-bottom

net.sf.csv4j
Class ProcessingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by net.sf.csv4j.ProcessingException
All Implemented Interfaces:
Serializable

public class ProcessingException
extends Exception

This exception indicates an error occurred during processing of a CSV file.

Since:
1.0
Author:
Shawn Boyce
See Also:
Serialized Form

Constructor Summary
ProcessingException(Throwable cause, int linenumber)
          Constructor.
 
Method Summary
 String toString()
          
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProcessingException

public ProcessingException(Throwable cause,
                           int linenumber)
Constructor.

Parameters:
cause - root cause of the exception
linenumber - line number of file where exception occurred
Method Detail

toString

public String toString()

Overrides:
toString in class Throwable

-bottom