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