Class IllegalNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.jcr.RepositoryException
org.apache.jackrabbit.spi.commons.conversion.NameException
org.apache.jackrabbit.spi.commons.conversion.IllegalNameException
- All Implemented Interfaces:
Serializable
Thrown when an illegal JCR name string is encountered. This exception is
thrown when attempting to parse a JCR name string that does not match the
JCR name syntax, or is otherwise not a legal name. Note that an
NamespaceException is thrown if the prefix of the JCR name
string is syntactically valid but not bound to any namespace.
See the section 3.4 of the JCR 2.0 specification for details of the JCR name syntax.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIllegalNameException(String message) Creates an IllegalNameException with the given error message.IllegalNameException(String message, Throwable rootCause) Creates an IllegalNameException with the given error message and root cause exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalNameException
Creates an IllegalNameException with the given error message.- Parameters:
message- error message
-
IllegalNameException
Creates an IllegalNameException with the given error message and root cause exception.- Parameters:
message- error messagerootCause- root cause exception
-