package gizmoball;

/**
 * An exception to be raised by methods that have not yet been
 * implemented.
 *
 * There's nothing interesting here.  It's literally a
 * RuntimeException with a different name.
 *
 * @author Austin Clements
 * @version 1.0
 */
public class NotImplementedException extends RuntimeException
{
    public NotImplementedException()
    {
        super();
    }
    
    public NotImplementedException(String message)
    {
        super(message);
    }

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

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