1 7 package org.enhydra.pim.exception; 8 9 14 public class EnhydraPimDatabaseException extends EnhydraPimException { 15 16 19 public EnhydraPimDatabaseException() { 20 super(); 21 } 22 23 26 public EnhydraPimDatabaseException(String message) { 27 super(message); 28 } 29 30 34 public EnhydraPimDatabaseException(String message, Throwable cause) { 35 super(message, cause); 36 } 37 38 41 public EnhydraPimDatabaseException(Throwable cause) { 42 super(cause); 43 } 44 45 } 46 | Popular Tags |