1 /*
2 * $Id: LoginException.java,v 1.3 2004/03/27 11:17:05 jdt Exp $
3 * Created on Mar 23, 2004 by jdt Copyright (C) AstroGrid. All rights reserved.
4 *
5 * This software is published under the terms of the AstroGrid Software License
6 * version 1.2, a copy of which has been included with this distribution in the
7 * LICENSE.txt file.
8 */
9 package org.astrogrid.portal.cocoon.common;
10
11 /***
12 * Exception thrown by LoginAction
13 * @author jdt
14 */
15 public class LoginException extends Exception {
16 /***
17 * Constructor
18 *
19 */
20 public LoginException() {
21 super();
22 }
23
24 /***
25 * Constructor
26 * @param arg0 description
27 */
28 public LoginException(final String arg0) {
29 super(arg0);
30 }
31
32 /***
33 * Constructor
34 * @param arg0 description
35 * @param arg1 cause
36 */
37 public LoginException(final String arg0, final Throwable arg1) {
38 super(arg0, arg1);
39 }
40
41 /***
42 * Constructor
43 * @param arg0 cause
44 */
45 public LoginException(final Throwable arg0) {
46 super(arg0);
47 }
48
49 }
50
51
52 /*
53 * $Log: LoginException.java,v $
54 * Revision 1.3 2004/03/27 11:17:05 jdt
55 * Checkstyle
56 *
57 * Revision 1.2 2004/03/24 18:31:33 jdt
58 * Merge from PLGN_JDT_bz#201
59 *
60 *
61 */