- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.pervasive.datarush.operators.io.textfile.ParseException
-
- All Implemented Interfaces:
Serializable
public class ParseException extends Exception
Exception indicating a parsing error. An explanation of the error is provided. If the source file being parsed is known, it is also provided.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException()
Create a parse error with no information provided.ParseException(String message)
Create a parse error with the specified message.ParseException(String message, String filePath)
Create a parse error with the specified message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getMessage()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ParseException
public ParseException()
Create a parse error with no information provided.
-
ParseException
public ParseException(String message)
Create a parse error with the specified message.- Parameters:
message
- an explanation of the error
-
-
Method Detail
-
getMessage
public String getMessage()
- Overrides:
getMessage
in classThrowable
-
-