1 /* *****************************************************************************2 * AuthenticationException.java3 * ****************************************************************************/4 5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *7 * Use is subject to license terms. *8 * J_LZ_COPYRIGHT_END *********************************************************/9 10 package org.openlaszlo.auth;11 12 /**13 * Authorization exception class.14 */15 public class AuthenticationException16 extends Exception 17 {18 public AuthenticationException()19 {20 super();21 }22 23 public AuthenticationException(String s)24 {25 super(s);26 }27 }28