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