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