1 6 7 package javax.emb; 8 9 17 public class FormatNotFoundException extends MediaFormatException 18 { 19 22 public FormatNotFoundException() 23 { 24 super(); 25 } 26 27 30 public FormatNotFoundException(String message) 31 { 32 super(message); 33 } 34 35 38 public FormatNotFoundException(String message, Throwable cause) 39 { 40 super(message, cause); 41 } 42 43 46 public FormatNotFoundException(Throwable cause) 47 { 48 super(cause); 49 } 50 } | Popular Tags |