| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception javax.jcr.RepositoryException javax.jcr.PathNotFoundException
PathNotFoundException | public class PathNotFoundException extends RepositoryException (Code) | | Exception thrown when no Item exists at the specified path
or when the specified path implies intermediary Node s that do
not exist.
|
Constructor Summary | |
public | PathNotFoundException() Constructs a new instance of this class with null as its
detail message. | public | PathNotFoundException(String message) Constructs a new instance of this class with the specified detail
message.
Parameters: message - the detail message. | public | PathNotFoundException(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 | PathNotFoundException(Throwable rootCause) Constructs a new instance of this class with the specified root cause. |
PathNotFoundException | public PathNotFoundException()(Code) | | Constructs a new instance of this class with null as its
detail message.
|
PathNotFoundException | public PathNotFoundException(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 PathNotFoundException.getMessage() method. |
PathNotFoundException | public PathNotFoundException(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 PathNotFoundException.getMessage() method. Parameters: rootCause - root failure cause |
PathNotFoundException | public PathNotFoundException(Throwable rootCause)(Code) | | Constructs a new instance of this class with the specified root cause.
Parameters: rootCause - root failure cause |
|
|
|