1 package org.apache.turbine.util.hibernate; 2 3 18 19 import org.apache.commons.lang.exception.NestableException; 20 21 27 public class PersistenceException extends NestableException 28 { 29 31 34 public PersistenceException() 35 { 36 super(); 37 } 38 39 44 public PersistenceException(String message) 45 { 46 super(message); 47 } 48 49 55 public PersistenceException(String message, Throwable cause) 56 { 57 super(message, cause); 58 } 59 60 65 public PersistenceException(Throwable cause) 66 { 67 super(cause); 68 } 69 70 } 71 | Popular Tags |