1 3 package jodd.typeconverter; 4 5 import jodd.util.UncheckedException; 6 7 public class TypeConversionException extends UncheckedException { 8 9 public TypeConversionException(Throwable t) { 10 super(t); 11 } 12 13 public TypeConversionException() { 14 super(); 15 } 16 17 public TypeConversionException(String message) { 18 super(message); 19 } 20 21 public TypeConversionException(String message, Throwable t) { 22 super(message, t); 23 } 24 } 25 | Popular Tags |