| java.lang.Object java.lang.Throwable java.lang.Exception javax.jcr.RepositoryException
All known Subclasses: javax.jcr.lock.LockException, javax.jcr.ItemExistsException, javax.jcr.nodetype.NodeTypeExistsException, javax.jcr.nodetype.NoSuchNodeTypeException, javax.jcr.ItemNotFoundException, javax.jcr.InvalidItemStateException, javax.jcr.LoginException, javax.jcr.query.InvalidQueryException, javax.jcr.ValueFormatException, javax.jcr.NamespaceException, javax.jcr.AccessDeniedException, javax.jcr.query.SearchNotSupportedException, javax.jcr.InvalidSerializedDataException, javax.jcr.UnsupportedRepositoryOperationException, javax.jcr.ReferentialIntegrityException, javax.jcr.security.PrincipalNotFoundException, javax.jcr.nodetype.ConstraintViolationException, javax.jcr.nodetype.InvalidNodeTypeDefinitionException, javax.jcr.security.PolicyNotFoundException, javax.jcr.version.LabelExistsVersionException, javax.jcr.MergeException, javax.jcr.NoSuchWorkspaceException, javax.jcr.PathNotFoundException, javax.jcr.security.AccessControlEntryNotFoundException, javax.jcr.InvalidLifecycleTransitionException, javax.jcr.version.VersionException,
RepositoryException | public class RepositoryException extends Exception (Code) | | Main exception thrown by classes in this package. May contain an error
message and/or another nested exception.
|
Constructor Summary | |
public | RepositoryException() Constructs a new instance of this class with null as its
detail message. | public | RepositoryException(String message) Constructs a new instance of this class with the specified detail
message.
Parameters: message - the detail message. | public | RepositoryException(String message, Throwable rootCause) Constructs a new instance of this class with the specified detail
message and root cause.
Parameters: message - the detail message. | public | RepositoryException(Throwable rootCause) Constructs a new instance of this class with the specified root cause. |
RepositoryException | public RepositoryException()(Code) | | Constructs a new instance of this class with null as its
detail message.
|
RepositoryException | public RepositoryException(String message)(Code) | | Constructs a new instance of this class with the specified detail
message.
Parameters: message - the detail message. The detail message is saved forlater retrieval by the RepositoryException.getMessage() method. |
RepositoryException | public RepositoryException(String message, Throwable rootCause)(Code) | | 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 forlater retrieval by the RepositoryException.getMessage() method. Parameters: rootCause - root failure cause |
RepositoryException | public RepositoryException(Throwable rootCause)(Code) | | Constructs a new instance of this class with the specified root cause.
Parameters: rootCause - root failure cause |
|
|