package gizmoball.property;

/**
 * An exception to indicate when a getter or setter method being
 * called through the property system threw an exception.
 *
 * @author Austin Clements
 * @version 1.0
 */
public class GetSetMethodException extends RuntimeException
{
    public GetSetMethodException()
    {
        super();
    }
    
    public GetSetMethodException(String message)
    {
        super(message);
    }

    public GetSetMethodException(String message, Throwable cause)
    {
        super(message, cause);
    }

    public GetSetMethodException(Throwable cause)
    {
        super(cause);
    }
}
