1. /*
  2. * @(#)VerifyError.java 1.13 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.lang;
  8. /**
  9. * Thrown when the "verifier" detects that a class file,
  10. * though well formed, contains some sort of internal inconsistency
  11. * or security problem.
  12. *
  13. * @author unascribed
  14. * @version 1.13, 12/19/03
  15. * @since JDK1.0
  16. */
  17. public
  18. class VerifyError extends LinkageError {
  19. /**
  20. * Constructs an <code>VerifyError</code> with no detail message.
  21. */
  22. public VerifyError() {
  23. super();
  24. }
  25. /**
  26. * Constructs an <code>VerifyError</code> with the specified detail message.
  27. *
  28. * @param s the detail message.
  29. */
  30. public VerifyError(String s) {
  31. super(s);
  32. }
  33. }