source: release-kits/lirk3/ant-scripts/tasks/antelope/src/ise/antelope/tasks/password/PasswordHandlerException.java@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 850 bytes
Line 
1package ise.antelope.tasks.password;
2
3/**
4 * Copyright 2003
5 *
6 * @version $Revision: 1.1 $
7 */
8public class PasswordHandlerException extends Exception {
9 /** Constructor for PasswordHandlerException */
10 public PasswordHandlerException() {
11 super();
12 }
13
14 /**
15 * Constructor for PasswordHandlerException
16 *
17 * @param message
18 */
19 public PasswordHandlerException(String message) {
20 super(message);
21 }
22
23 /**
24 * Constructor for PasswordHandlerException
25 *
26 * @param message
27 * @param cause
28 */
29 public PasswordHandlerException(String message, Throwable cause) {
30 super(message, cause);
31 }
32
33 /**
34 * Constructor for PasswordHandlerException
35 *
36 * @param cause
37 */
38 public PasswordHandlerException(Throwable cause) {
39 super(cause);
40 }
41}
42
Note: See TracBrowser for help on using the repository browser.