Package com.aspectran.core.util.apon
Class MissingClosingBracketException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.core.util.apon.AponException
-
- com.aspectran.core.util.apon.AponParseException
-
- com.aspectran.core.util.apon.AponSyntaxException
-
- com.aspectran.core.util.apon.MissingClosingBracketException
-
- All Implemented Interfaces:
java.io.Serializable
public class MissingClosingBracketException extends AponSyntaxException
This exception will be thrown when missing closing brackets.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MissingClosingBracketException()
Simple constructor.MissingClosingBracketException(java.lang.String msg)
Constructor to create exception with a message.MissingClosingBracketException(java.lang.String bracketShape, java.lang.String name, ParameterValue parameterValue)
Constructor to create exception with a message.MissingClosingBracketException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.MissingClosingBracketException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.
-
Method Summary
-
Methods inherited from class com.aspectran.core.util.apon.AponSyntaxException
createMessage
-
-
-
-
Constructor Detail
-
MissingClosingBracketException
public MissingClosingBracketException()
Simple constructor.
-
MissingClosingBracketException
public MissingClosingBracketException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
MissingClosingBracketException
public MissingClosingBracketException(java.lang.String bracketShape, java.lang.String name, ParameterValue parameterValue)
Constructor to create exception with a message.- Parameters:
bracketShape
- the bracket charactername
- the parameter nameparameterValue
- the parameter value
-
MissingClosingBracketException
public MissingClosingBracketException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
MissingClosingBracketException
public MissingClosingBracketException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- a message to associate with the exceptioncause
- the real cause of the exception
-
-