1. /*
  2. * @(#)KeyStoreException.java 1.9 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.security;
  8. /**
  9. * This is the generic KeyStore exception.
  10. *
  11. * @author Jan Luehe
  12. *
  13. * @version 1.9, 01/23/03
  14. *
  15. * @since 1.2
  16. */
  17. public class KeyStoreException extends GeneralSecurityException {
  18. /**
  19. * Constructs a KeyStoreException with no detail message. (A
  20. * detail message is a String that describes this particular
  21. * exception.)
  22. */
  23. public KeyStoreException() {
  24. super();
  25. }
  26. /**
  27. * Constructs a KeyStoreException with the specified detail
  28. * message. (A detail message is a String that describes this
  29. * particular exception.)
  30. *
  31. * @param msg the detail message.
  32. */
  33. public KeyStoreException(String msg) {
  34. super(msg);
  35. }
  36. }