1 package org.enhydra.pim.exception; 2 3 8 public class EnhydraPimException extends Exception { 9 10 13 public EnhydraPimException() { 14 super(); 15 } 16 19 public EnhydraPimException(String message) { 20 super(message); 21 } 22 26 public EnhydraPimException(String message, Throwable cause) { 27 super(message, cause); 28 } 29 32 public EnhydraPimException(Throwable cause) { 33 super(cause); 34 } 35 } 36 | Popular Tags |