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