01: package org.enhydra.dm.business.exceptions;
02:
03: import org.enhydra.dm.api.exceptions.BaseException;
04:
05: /**
06: * Extension of BaseException for Not Alloved actions
07: *
08: * @author Svjetlana Milidrag
09: */
10:
11: public class ActionNotAllowedException extends BaseException {
12:
13: public ActionNotAllowedException() {
14: super ();
15:
16: }
17:
18: public ActionNotAllowedException(String arg0, Throwable arg1) {
19: super (arg0, arg1);
20:
21: }
22:
23: public ActionNotAllowedException(String arg0) {
24: super (arg0);
25:
26: }
27:
28: public ActionNotAllowedException(Throwable arg0) {
29: super(arg0);
30:
31: }
32:
33: }
|