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