// NumericInputException.java

import java.io.IOException;

public class NumericInputException extends IOException
{
   public NumericInputException()  {}  // implied call to super()
   public NumericInputException(String gripe)  { super(gripe); }
}  // class NumericInputException