- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.praxislive.core.syntax.InvalidSyntaxException
-
- All Implemented Interfaces:
Serializable
public class InvalidSyntaxException extends RuntimeException
Exception thrown when text syntax is invalid and cannot be parsed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidSyntaxException()
Creates a new instance ofInvalidSyntaxException
without detail message.InvalidSyntaxException(String msg)
Constructs an instance ofInvalidSyntaxException
with the specified detail message.InvalidSyntaxException(String message, Throwable cause)
Constructs an instance ofInvalidSyntaxException
with the specified detail message and cause.InvalidSyntaxException(Throwable cause)
Constructs an instance ofInvalidSyntaxException
with the specified detail cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidSyntaxException
public InvalidSyntaxException()
Creates a new instance ofInvalidSyntaxException
without detail message.
-
InvalidSyntaxException
public InvalidSyntaxException(String msg)
Constructs an instance ofInvalidSyntaxException
with the specified detail message.- Parameters:
msg
- the detail message.
-
InvalidSyntaxException
public InvalidSyntaxException(String message, Throwable cause)
Constructs an instance ofInvalidSyntaxException
with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- cause
-
InvalidSyntaxException
public InvalidSyntaxException(Throwable cause)
Constructs an instance ofInvalidSyntaxException
with the specified detail cause.- Parameters:
cause
- cause
-
-