View Javadoc

1   /***
2    *  Copyright 2003-2007 Greg Luck
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *  Unless required by applicable law or agreed to in writing, software
11   *  distributed under the License is distributed on an "AS IS" BASIS,
12   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *  See the License for the specific language governing permissions and
14   *  limitations under the License.
15   */
16  
17  package net.sf.jpam;
18  
19  /***
20   * The <code>PamException</code> class is used
21   * to indicate that an exceptional condition has occurred in the native PAM library
22   * <p/>
23   * This exception does not use the new JDK1.4 chainable excecptions facility
24   * to maintain backward compatibility with JDK1.2 and JDK1.3.
25   *
26   * @author Greg Luck
27   * @version $Id: PamException.java 1 2006-12-31 23:27:21Z gregluck $
28   */
29  public class PamException extends Exception {
30      /***
31       * Constructor for the PamException object
32       */
33      public PamException() {
34          super();
35      }
36  
37      /***
38       * Constructor for the PamException object
39       * @param message
40       */
41      public PamException(String message) {
42          super(message);
43      }
44  
45  }