View Javadoc

1   package com.atlassian.cache;
2   
3   import com.atlassian.annotations.PublicApi;
4   
5   @PublicApi
6   public class CacheException extends RuntimeException
7   {
8       private static final long serialVersionUID = 4803271026261445311L;
9   
10      public CacheException()
11      {
12          super();
13      }
14  
15      public CacheException(final String message, final Throwable cause)
16      {
17          super(message, cause);
18      }
19  
20      public CacheException(final String message)
21      {
22          super(message);
23      }
24  
25      public CacheException(final Throwable cause)
26      {
27          super(cause);
28      }
29  }