1. /*
  2. * @(#)DigestException.java 1.12 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 generic Message Digest exception.
  13. *
  14. * @version 1.12, 00/02/02
  15. * @author Benjamin Renaud
  16. */
  17. public class DigestException extends GeneralSecurityException {
  18. /**
  19. * Constructs a DigestException with no detail message. (A
  20. * detail message is a String that describes this particular
  21. * exception.)
  22. */
  23. public DigestException() {
  24. super();
  25. }
  26. /**
  27. * Constructs a DigestException 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 DigestException(String msg) {
  34. super(msg);
  35. }
  36. }