1. /*
  2. * @(#)SignatureException.java 1.13 03/01/23
  3. *
  4. * Copyright 2003 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 generic Signature exception.
  10. *
  11. * @version 1.13 01/23/03
  12. * @author Benjamin Renaud
  13. */
  14. public class SignatureException extends GeneralSecurityException {
  15. /**
  16. * Constructs a SignatureException with no detail message. A
  17. * detail message is a String that describes this particular
  18. * exception.
  19. */
  20. public SignatureException() {
  21. super();
  22. }
  23. /**
  24. * Constructs a SignatureException with the specified detail
  25. * message. A detail message is a String that describes this
  26. * particular exception.
  27. *
  28. * @param msg the detail message.
  29. */
  30. public SignatureException(String msg) {
  31. super(msg);
  32. }
  33. }