jdk/src/share/classes/java/io/FileNotFoundException.java
changeset 24865 09b1d992ca72
parent 5506 202f599c92aa
equal deleted inserted replaced
24864:a7bf63ebda64 24865:09b1d992ca72
    35  * with the specified pathname does not exist.  It will also be thrown by these
    35  * with the specified pathname does not exist.  It will also be thrown by these
    36  * constructors if the file does exist but for some reason is inaccessible, for
    36  * constructors if the file does exist but for some reason is inaccessible, for
    37  * example when an attempt is made to open a read-only file for writing.
    37  * example when an attempt is made to open a read-only file for writing.
    38  *
    38  *
    39  * @author  unascribed
    39  * @author  unascribed
    40  * @since   JDK1.0
    40  * @since   1.0
    41  */
    41  */
    42 
    42 
    43 public class FileNotFoundException extends IOException {
    43 public class FileNotFoundException extends IOException {
    44     private static final long serialVersionUID = -897856973823710492L;
    44     private static final long serialVersionUID = -897856973823710492L;
    45 
    45