1 /*2 * @(#)AccountException.java 1.3 04/02/033 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package javax.security.auth.login;9 10 /**11 * A generic account exception.12 *13 * @version 1.3, 02/03/0414 * @since 1.515 */16 public class AccountException extends LoginException {17 18 private static final long serialVersionUID = -2112878680072211787L;19 20 /**21 * Constructs a AccountException with no detail message. A detail22 * message is a String that describes this particular exception.23 */24 public AccountException() {25 super();26 }27 28 /**29 * Constructs a AccountException with the specified detail message.30 * A detail message is a String that describes this particular31 * exception.32 *33 * <p>34 *35 * @param msg the detail message.36 */37 public AccountException(String msg) {38 super(msg);39 }40 }41 42