1 package prefuse.data; 2 3 8 public class DataTypeException extends RuntimeException { 9 10 13 public DataTypeException() { 14 super(); 15 } 16 17 23 public DataTypeException(String message, Throwable cause) { 24 super(message, cause); 25 } 26 27 31 public DataTypeException(String message) { 32 super(message); 33 } 34 35 40 public DataTypeException(Throwable cause) { 41 super(cause); 42 } 43 44 48 public DataTypeException(Class type) { 49 super("Type "+type.getName()+" not supported."); 50 } 51 52 } | Popular Tags |