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