Class ParserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.alachisoft.ncache.runtime.exceptions.ParserException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParserException extends java.lang.ExceptionThis exception is thrown when an exception occurs during configuration. Likely causes are badly specified configuration strings.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParserException()Default constructorParserException(java.lang.String message)Overloaded constructor, takes the reason as parameter.ParserException(java.lang.String message, java.lang.Throwable cause)ParserException(java.lang.Throwable cause)
-
-
-
Constructor Detail
-
ParserException
public ParserException(java.lang.Throwable cause)
- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
ParserException
public ParserException(java.lang.String message, java.lang.Throwable cause)- Parameters:
message- detail messagecause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-
ParserException
public ParserException(java.lang.String message)
Overloaded constructor, takes the reason as parameter.- Parameters:
message-
-
ParserException
public ParserException()
Default constructor
-
-