Package com.aspectran.core.util.apon
Class AponSyntaxException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.aspectran.core.util.apon.AponParseException
-
- com.aspectran.core.util.apon.AponSyntaxException
-
- All Implemented Interfaces:
java.io.Serializable
public class AponSyntaxException extends AponParseException
This exception is raised when attempting to read (or write) a malformed APON element.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AponSyntaxException(int lineNumber, java.lang.String line, java.lang.String tline, ParameterValue parameterValue, ParameterValueType expectedParameterValueType)
Constructor to create exception with a message.AponSyntaxException(int lineNumber, java.lang.String line, java.lang.String tline, java.lang.String msg)
Constructor to create exception with a message.AponSyntaxException(java.lang.String msg)
Constructor to create exception with a message.
-
-
-
Constructor Detail
-
AponSyntaxException
public AponSyntaxException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
AponSyntaxException
public AponSyntaxException(int lineNumber, java.lang.String line, java.lang.String tline, java.lang.String msg)
Constructor to create exception with a message.- Parameters:
lineNumber
- the line numberline
- the character linetline
- the trimmed character linemsg
- a message to associate with the exception
-
AponSyntaxException
public AponSyntaxException(int lineNumber, java.lang.String line, java.lang.String tline, ParameterValue parameterValue, ParameterValueType expectedParameterValueType)
Constructor to create exception with a message.- Parameters:
lineNumber
- the line numberline
- the character linetline
- the trimmed character lineparameterValue
- the actual value typeexpectedParameterValueType
- the expected value type
-
-