Module io.inverno.core.compiler
Package io.inverno.core.compiler.spi
Class QualifiedNameFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
io.inverno.core.compiler.spi.QualifiedNameFormatException
- All Implemented Interfaces:
Serializable
Thrown by a QualifiedName implementation to indicate a bad format.
- Author:
- Jeremy Kuhn
- See Also:
- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a qualified name format exception.QualifiedNameFormatException(String message)Creates a qualified name format exception with the specified message.QualifiedNameFormatException(String message, Throwable cause)Creates a qualified name format exception with the specified message and cause.Creates a qualified name format exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
QualifiedNameFormatException
public QualifiedNameFormatException()Creates a qualified name format exception.
-
QualifiedNameFormatException
Creates a qualified name format exception with the specified message.
- Parameters:
message- the message
-
QualifiedNameFormatException
Creates a qualified name format exception with the specified cause.
- Parameters:
cause- the cause
-
QualifiedNameFormatException
Creates a qualified name format exception with the specified message and cause.
- Parameters:
message- the messagecause- the cause
-