cformat
Class ScanfMatchException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--cformat.ScanfMatchException
All Implemented Interfaces:
java.io.Serializable

public class ScanfMatchException
extends java.io.IOException

Exception class used by the scan methods within ScanfReader when the input does not match the specified format.

Author:
John E. Lloyd, Fall 2000
See Also:
ScanfReader, Serialized Form

Constructor Summary
ScanfMatchException(java.lang.String msg)
          Creates a new ScanfMatchException with the given message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ScanfMatchException

public ScanfMatchException(java.lang.String msg)
Creates a new ScanfMatchException with the given message.

Parameters:
msg - Error message
See Also:
ScanfReader