1. /*
  2. * @(#)VerifyError.java 1.10 00/02/02
  3. *
  4. * Copyright 1995-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.lang;
  11. /**
  12. * Thrown when the "verifier" detects that a class file,
  13. * though well formed, contains some sort of internal inconsistency
  14. * or security problem.
  15. *
  16. * @author unascribed
  17. * @version 1.10, 02/02/00
  18. * @since JDK1.0
  19. */
  20. public
  21. class VerifyError extends LinkageError {
  22. /**
  23. * Constructs an <code>VerifyError</code> with no detail message.
  24. */
  25. public VerifyError() {
  26. super();
  27. }
  28. /**
  29. * Constructs an <code>VerifyError</code> with the specified detail message.
  30. *
  31. * @param s the detail message.
  32. */
  33. public VerifyError(String s) {
  34. super(s);
  35. }
  36. }