1 7 8 package java.io; 9 10 11 25 26 public class FileNotFoundException extends IOException { 27 28 32 public FileNotFoundException() { 33 super(); 34 } 35 36 45 public FileNotFoundException(String s) { 46 super(s); 47 } 48 49 58 private FileNotFoundException(String path, String reason) { 59 super(path + ((reason == null) 60 ? "" 61 : " (" + reason + ")")); 62 } 63 64 } 65 | Popular Tags |