1 45 package org.exolab.jms.persistence; 46 47 import org.exolab.jms.service.ServiceException; 48 49 50 57 public class PersistenceException extends ServiceException { 58 59 62 public PersistenceException() { 63 } 64 65 70 public PersistenceException(String message) { 71 super(message); 72 } 73 74 80 public PersistenceException(Throwable cause) { 81 super(cause); 82 } 83 84 91 public PersistenceException(String message, Throwable cause) { 92 super(message, cause); 93 } 94 95 } 96 | Popular Tags |