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