1 17 18 package org.apache.geronimo.timer; 19 20 26 public class PersistenceException extends Exception { 27 28 public PersistenceException() { 29 super(); 30 } 31 32 public PersistenceException(String message) { 33 super(message); 34 } 35 36 public PersistenceException(String message, Throwable cause) { 37 super(message, cause); 38 } 39 40 public PersistenceException(Throwable cause) { 41 super(cause); 42 } 43 44 } 45 | Popular Tags |