Package javax.jcr
Class NamespaceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.jcr.RepositoryException
-
- javax.jcr.NamespaceException
-
- All Implemented Interfaces:
java.io.Serializable
public class NamespaceException extends RepositoryException
Exception thrown byif the specifiedSession.setNamespacePrefix(String prefix, String uri)uriis not registered in theNamespaceRegistry.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NamespaceException()Constructs a new instance of this class withnullas its detail message.NamespaceException(java.lang.String message)Constructs a new instance of this class with the specified detail message.NamespaceException(java.lang.String message, java.lang.Throwable rootCause)Constructs a new instance of this class with the specified detail message and root cause.NamespaceException(java.lang.Throwable rootCause)Constructs a new instance of this class with the specified root cause.
-
-
-
Constructor Detail
-
NamespaceException
public NamespaceException()
Constructs a new instance of this class withnullas its detail message.
-
NamespaceException
public NamespaceException(java.lang.String message)
Constructs a new instance of this class with the specified detail message.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
NamespaceException
public NamespaceException(java.lang.String message, java.lang.Throwable rootCause)Constructs a new instance of this class with the specified detail message and root cause.- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.rootCause- root failure cause
-
NamespaceException
public NamespaceException(java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified root cause.- Parameters:
rootCause- root failure cause
-
-