/**
 * White and Nerdy #goals (jk sample exception)
 * by
 * @author "Weird Al" Yankovic
 * @version 1.0
 */
public class OhNoAnException extends RuntimeException {
    /**
     * Creates an exception with attitude.
     */
    public OhNoAnException( ) {
	super( ); // calls the super (RuntimeException) constructor
    }

    /**
     * Creates an exception with specific error message.
     * @param message that is to be displayed.
     */
    public OhNoAnException( String message ) {
	super( message ); // calls the super (RuntimeException) constructor with a specified error message
    }
}
