jdk/src/share/classes/java/net/MalformedURLException.java
changeset 24865 09b1d992ca72
parent 19069 1d9cb0d080e3
equal deleted inserted replaced
24864:a7bf63ebda64 24865:09b1d992ca72
    31  * Thrown to indicate that a malformed URL has occurred. Either no
    31  * Thrown to indicate that a malformed URL has occurred. Either no
    32  * legal protocol could be found in a specification string or the
    32  * legal protocol could be found in a specification string or the
    33  * string could not be parsed.
    33  * string could not be parsed.
    34  *
    34  *
    35  * @author  Arthur van Hoff
    35  * @author  Arthur van Hoff
    36  * @since   JDK1.0
    36  * @since   1.0
    37  */
    37  */
    38 public class MalformedURLException extends IOException {
    38 public class MalformedURLException extends IOException {
    39     private static final long serialVersionUID = -182787522200415866L;
    39     private static final long serialVersionUID = -182787522200415866L;
    40 
    40 
    41     /**
    41     /**