All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gemstone.org.jgroups.persistence.CannotPersistException Maven / Gradle / Ivy

There is a newer version: 2.0-BETA
Show newest version
/** Notice of modification as required by the LGPL
 *  This file was modified by Gemstone Systems Inc. on
 *  $Date$
 **/
package  com.gemstone.org.jgroups.persistence;

/**
 * @author Mandar Shinde
 * This exception inherits the Exception class and is used in
 * cases where the Persistence Storage cannot persist a pair
 * from its storage mechanism (leading to fatal errors)
 */

public class CannotPersistException extends Exception
{
    private static final long serialVersionUID = -5346794365646061026L;

    /**
     * @param t
     * @param reason implementor-specified runtime reason
     */
    public CannotPersistException(Throwable t, String reason)
    {
	this.t = t;
	this.reason = reason;
    }

    /**
     * @return String;
     */
    @Override // GemStoneAddition
    public String toString()
    {
	String tmp = "Exception " + t.toString() + " was thrown due to " + reason;
	return tmp;
    }

    /**
     * members are made available so that the top level user can dump
     * appropriate members on to his stack trace
     */
    private Throwable t = null;
    private String reason = null;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy