View Javadoc

1   package net.sf.cantina.exceptions;
2   
3   
4   
5   
6   /***
7    * User can't perform operation.
8    * @author Stephane JAIS
9    */
10  
11  public class ForbiddenOperationException extends CantinaException
12  {
13    public ForbiddenOperationException () { super(); } 
14    public ForbiddenOperationException (String s) { super(s); } 
15    public ForbiddenOperationException (String s, Exception e) { super(s,e); } 
16  }