View Javadoc

1   package org.modeshape.web.jcr.spi;
2   
3   import javax.jcr.RepositoryException;
4   
5   /**
6    * Exception thrown when an operation attempts to access a repository that does not exist.
7    */
8   public class NoSuchRepositoryException extends RepositoryException {
9   
10      private static final long serialVersionUID = 1L;
11  
12      public NoSuchRepositoryException() {
13          super();
14      }
15  
16      public NoSuchRepositoryException( String message,
17                                        Throwable rootCause ) {
18          super(message, rootCause);
19      }
20  
21      public NoSuchRepositoryException( String message ) {
22          super(message);
23      }
24  
25      public NoSuchRepositoryException( Throwable rootCause ) {
26          super(rootCause);
27      }
28  
29  }