package sac.persistencia;

import sac.util.ChainException;

/**
 * Insert the type's description here.
 * Creation date: (31/10/2001 22:45:33)
 * @author: Administrator
 */
public class PersistenceException extends ChainException {
    /**
     * PersistenceException constructor comment.
     */
    public PersistenceException() {
            super();
    }
    /**
     * PersistenceException constructor comment.
     * @param s java.lang.String
     */
    public PersistenceException(String s) {
            super(s);
    }

    public PersistenceException(Throwable _error) {
            super(_error);
    }
    public PersistenceException(String s, Throwable _error) {
            super(s, _error);
    }
}
