1 package org.enhydra.pim.exception; 2 3 8 public class EnhydraPimLogicException extends EnhydraPimException { 9 10 13 public EnhydraPimLogicException() { 14 super(); 15 } 17 18 21 public EnhydraPimLogicException(String message) { 22 super(message); 23 } 25 26 30 public EnhydraPimLogicException(String message, Throwable cause) { 31 super(message, cause); 32 } 34 35 38 public EnhydraPimLogicException(Throwable cause) { 39 super(cause); 40 } 42 43 } 44 | Popular Tags |