home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / kaffevm / errors.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  36 lines

  1. /*
  2.  * errors.h
  3.  * Error return codes.
  4.  *
  5.  * Copyright (c) 1996 Systems Architecture Research Centre,
  6.  *           City University, London, UK.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  12.  */
  13.  
  14. #ifndef __errors_h
  15. #define __errors_h
  16.  
  17. struct _object;
  18.  
  19. extern struct _object*    ClassFormatError;
  20. extern struct _object*    ClassFormatError;
  21. extern struct _object*    LinkageError;
  22. extern struct _object*    ClassNotFoundException;
  23. extern struct _object*    NoSuchFieldError;
  24. extern struct _object*    NoSuchMethodError;
  25. extern struct _object*    OutOfMemoryError;
  26. extern struct _object*    UnsatisfiedLinkError;
  27. extern struct _object*    VirtualMachineError;
  28. extern struct _object*    ClassCircularityError;
  29. extern struct _object*    NegativeArraySizeException;
  30. extern struct _object*    ClassCastException;
  31. extern struct _object*    IllegalMonitorStateException;
  32. extern struct _object*    NullPointerException;
  33. extern struct _object*    ArrayIndexOutOfBoundsException;
  34.  
  35. #endif
  36.