1. /*
  2. * @(#)KeyStoreException.java 1.7 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.security;
  11. /**
  12. * This is the generic KeyStore exception.
  13. *
  14. * @author Jan Luehe
  15. *
  16. * @version 1.7, 02/02/00
  17. *
  18. * @since 1.2
  19. */
  20. public class KeyStoreException extends GeneralSecurityException {
  21. /**
  22. * Constructs a KeyStoreException with no detail message. (A
  23. * detail message is a String that describes this particular
  24. * exception.)
  25. */
  26. public KeyStoreException() {
  27. super();
  28. }
  29. /**
  30. * Constructs a KeyStoreException with the specified detail
  31. * message. (A detail message is a String that describes this
  32. * particular exception.)
  33. *
  34. * @param msg the detail message.
  35. */
  36. public KeyStoreException(String msg) {
  37. super(msg);
  38. }
  39. }