Class NameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.jcr.RepositoryException
org.apache.jackrabbit.spi.commons.conversion.NameException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
IllegalNameException,MalformedPathException
Base class for exceptions about malformed or otherwise
invalid JCR names and paths.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNameException(String message) Creates a NameException with the given error message.NameException(String message, Throwable rootCause) Creates a NameException 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
-
NameException
Creates a NameException with the given error message.- Parameters:
message- error message
-
NameException
Creates a NameException with the given error message and root cause exception.- Parameters:
message- error messagerootCause- root cause exception
-