bill.util.csv
Class CSVException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--bill.util.csv.CSVException
All Implemented Interfaces:
Serializable

public class CSVException
extends Exception

Exception class for CSV processing specific exceptions.

See Also:
Serialized Form

Constructor Summary
CSVException()
          Creates an empty CSVException.
CSVException(String message)
          Creates a CSVException with the specified exception message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CSVException

public CSVException()
Creates an empty CSVException.

CSVException

public CSVException(String message)
Creates a CSVException with the specified exception message. The exception message string can later be retrieved by the Throwable.getMessage () method of class java.lang.Throwable.
Parameters:
message - The exception message.