View Javadoc

1   package com.atlassian.user.impl;
2   
3   /**
4    * Represents the failure of an operation at the back-end.
5    */
6   
7   import com.atlassian.user.EntityException;
8   
9   public class RepositoryException extends EntityException
10  {
11      public RepositoryException()
12      {
13          super();
14      }
15  
16      public RepositoryException(String message)
17      {
18          super(message);
19      }
20  
21      public RepositoryException(Throwable cause)
22      {
23          super(cause);
24      }
25  
26      public RepositoryException(String message, Throwable cause)
27      {
28          super(message, cause);
29      }
30  }