1 /*
2 * Copyright (c) 2003
3 * Information Desire GmbH
4 * All rights reserved.
5 */
6 package com.infodesire.infobit;
7
8 /***
9 * exception indicating that current user was not allowed to perform certain
10 * action. All constructors are derived from {@see java.lang.Exception}
11 *
12 * @author konstantin
13 * @created August 6, 2003
14 * @version $Revision: 1.2 $
15 */
16 public class InfobitSecurityException extends Exception {
17 /***
18 * default constructor
19 */
20 public InfobitSecurityException() {
21 super();
22 }
23
24
25 /***
26 * specify message
27 *
28 * @param msg exception message
29 */
30 public InfobitSecurityException(String msg) {
31 super(msg);
32 }
33
34
35 /***
36 * specify message and cause
37 *
38 * @param msg exception message
39 * @param cause cause of exception
40 */
41 public InfobitSecurityException(String msg, Throwable cause) {
42 super(msg, cause);
43 }
44
45
46 /***
47 * specify cause
48 *
49 * @param cause cause of exception
50 */
51 public InfobitSecurityException(Throwable cause) {
52 super(cause);
53 }
54 }
This page was automatically generated by Maven