KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openbravo > authentication > AuthenticationException


1 /*
2  ************************************************************************************
3  * Copyright (C) 2001-2006 Openbravo S.L.
4  * Licensed under the Apache Software License version 2.0
5  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software distributed
7  * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
8  * CONDITIONS OF ANY KIND, either express or implied. See the License for the
9  * specific language governing permissions and limitations under the License.
10  ************************************************************************************
11  */

12
13 package org.openbravo.authentication;
14
15 /**
16  *
17  * @author adrianromero
18  */

19 public class AuthenticationException extends java.lang.Exception JavaDoc {
20
21   /**
22    * Creates a new instance of <code>AuthenticationException</code> without detail message.
23    */

24   public AuthenticationException() {
25   }
26
27
28   /**
29    * Constructs an instance of <code>AuthenticationException</code> with the specified detail message.
30    * @param msg the detail message.
31    */

32   public AuthenticationException(String JavaDoc msg) {
33     super(msg);
34   }
35
36   public AuthenticationException(String JavaDoc msg, Throwable JavaDoc t) {
37     super(msg, t);
38   }
39 }
40
Popular Tags