1. /*
  2. * @(#)KeyManagementException.java 1.11 00/02/02
  3. *
  4. * Copyright 1996-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 general key management exception, for all operations
  13. * dealing with key management. Subclasses
  14. * could include:
  15. *
  16. * <ul>
  17. * <li>KeyIDConflict
  18. * <li>KeyAuthorizationFailureException
  19. * <li>ExpiredKeyException
  20. * </ul>
  21. *
  22. * @version 1.11 00/02/02
  23. * @author Benjamin Renaud
  24. *
  25. * @see Key
  26. * @see KeyException
  27. */
  28. public class KeyManagementException extends KeyException {
  29. /**
  30. * Constructs a KeyManagementException with no detail message. A
  31. * detail message is a String that describes this particular
  32. * exception.
  33. */
  34. public KeyManagementException() {
  35. super();
  36. }
  37. /**
  38. * Constructs a KeyManagementException with the specified detail
  39. * message. A detail message is a String that describes this
  40. * particular exception.
  41. *
  42. * @param msg the detail message.
  43. */
  44. public KeyManagementException(String msg) {
  45. super(msg);
  46. }
  47. }