1 2 3 package org.enhydra.shark.api.internal.instancepersistence; 4 5 import org.enhydra.shark.api.RootException; 6 7 16 public class PersistenceException extends RootException { 17 18 23 public PersistenceException(String message) { 24 super(message); 25 } 26 27 34 public PersistenceException(Throwable cause) { 35 super(cause); 36 } 37 38 45 public PersistenceException(String message, Throwable cause) { 46 super(message, cause); 47 } 48 } 49 50 | Popular Tags |