olg.csv.bean.parser
Class ParseException

Package class diagram package ParseException
java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by olg.csv.bean.parser.ParseException
All Implemented Interfaces:
Serializable

public class ParseException
extends RuntimeException

Exception thrown when an error occurs during parsing String into Bean.

See Also:
Serialized Form

Field Summary
private static long serialVersionUID
           
 
Constructor Summary
ParseException()
          Constructs a new parse exception with null as its detail message.
ParseException(String message)
          Constructs a new Parse exception with the specified detail message.
ParseException(String message, Throwable cause)
          Constructs a new parse exception with the specified detail message and cause.
ParseException(Throwable cause)
          Constructs a new parse exception with the specified cause and a detail message of (cause==null ?
 
Method Summary
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

ParseException

public ParseException()
Constructs a new parse exception with null as its detail message.


ParseException

public ParseException(String message)
Constructs a new Parse exception with the specified detail message.

Parameters:
message - the detail message.

ParseException

public ParseException(Throwable cause)
Constructs a new parse exception with the specified cause and a detail message of (cause==null ? null : cause.toString()).

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method).

ParseException

public ParseException(String message,
                      Throwable cause)
Constructs a new parse exception with the specified detail message and cause.

Parameters:
message - the detail message.
cause - the cause.


Copyright © 2014. All Rights Reserved.