KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > cache > JahiaCacheException


1 package org.jahia.services.cache;
2
3 public class JahiaCacheException extends RuntimeException JavaDoc
4 {
5
6   /**
7    *
8    */

9   public JahiaCacheException()
10   {
11     super();
12     // TODO Auto-generated constructor stub
13
}
14
15   /**
16    * @param message
17    */

18   public JahiaCacheException(String JavaDoc message)
19   {
20     super(message);
21     // TODO Auto-generated constructor stub
22
}
23
24   /**
25    * @param cause
26    */

27   public JahiaCacheException(Throwable JavaDoc cause)
28   {
29     super(cause);
30     // TODO Auto-generated constructor stub
31
}
32
33   /**
34    * @param message
35    * @param cause
36    */

37   public JahiaCacheException(String JavaDoc message, Throwable JavaDoc cause)
38   {
39     super(message, cause);
40     // TODO Auto-generated constructor stub
41
}
42
43 }
44
Popular Tags