KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > roller > RollerPermissionsException


1 package org.roller;
2
3 /**
4  * Thrown when persistence session user lacks one or more required permissions.
5  */

6 public class RollerPermissionsException extends RollerException
7 {
8     /**
9      * Construct RollerException, wrapping existing throwable.
10      * @param s Error message.
11      * @param t Throwable to be wrapped
12      */

13     public RollerPermissionsException(String JavaDoc s,Throwable JavaDoc t)
14     {
15         super(s,t);
16     }
17     /**
18      * Construct RollerException, wrapping existing throwable.
19      * @param t Throwable to be wrapped
20      */

21     public RollerPermissionsException(Throwable JavaDoc t)
22     {
23         super(t);
24     }
25     /**
26      * Construct RollerException, with error message.
27      * @param s Error message
28      */

29     public RollerPermissionsException(String JavaDoc s)
30     {
31         super(s);
32     }
33 }
34
35
Popular Tags