1. /*
  2. * @(#)ProviderException.java 1.9 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. /** A runtime exception for Provider exceptions (such as
  9. * misconfiguration errors), which may be subclassed by Providers to
  10. * throw specialized, provider-specific runtime errors.
  11. *
  12. * @version 1.9, 01/11/29
  13. * @author Benjamin Renaud
  14. */
  15. public class ProviderException extends RuntimeException {
  16. /**
  17. * Constructs a ProviderException with no detail message. A
  18. * detail message is a String that describes this particular
  19. * exception.
  20. */
  21. public ProviderException() {
  22. super();
  23. }
  24. /**
  25. * Constructs a ProviderException with the specified detail
  26. * message. A detail message is a String that describes this
  27. * particular exception.
  28. *
  29. * @param s the detail message.
  30. */
  31. public ProviderException(String s) {
  32. super(s);
  33. }
  34. }