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