DOMException.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __org_w3c_dom_DOMException__
  3. #define __org_w3c_dom_DOMException__
  4. #pragma interface
  5. #include <java/lang/RuntimeException.h>
  6. extern "Java"
  7. {
  8. namespace org
  9. {
  10. namespace w3c
  11. {
  12. namespace dom
  13. {
  14. class DOMException;
  15. }
  16. }
  17. }
  18. }
  19. class org::w3c::dom::DOMException : public ::java::lang::RuntimeException
  20. {
  21. public:
  22. DOMException(jshort, ::java::lang::String *);
  23. jshort __attribute__((aligned(__alignof__( ::java::lang::RuntimeException)))) code;
  24. static const jshort INDEX_SIZE_ERR = 1;
  25. static const jshort DOMSTRING_SIZE_ERR = 2;
  26. static const jshort HIERARCHY_REQUEST_ERR = 3;
  27. static const jshort WRONG_DOCUMENT_ERR = 4;
  28. static const jshort INVALID_CHARACTER_ERR = 5;
  29. static const jshort NO_DATA_ALLOWED_ERR = 6;
  30. static const jshort NO_MODIFICATION_ALLOWED_ERR = 7;
  31. static const jshort NOT_FOUND_ERR = 8;
  32. static const jshort NOT_SUPPORTED_ERR = 9;
  33. static const jshort INUSE_ATTRIBUTE_ERR = 10;
  34. static const jshort INVALID_STATE_ERR = 11;
  35. static const jshort SYNTAX_ERR = 12;
  36. static const jshort INVALID_MODIFICATION_ERR = 13;
  37. static const jshort NAMESPACE_ERR = 14;
  38. static const jshort INVALID_ACCESS_ERR = 15;
  39. static const jshort VALIDATION_ERR = 16;
  40. static const jshort TYPE_MISMATCH_ERR = 17;
  41. static ::java::lang::Class class$;
  42. };
  43. #endif // __org_w3c_dom_DOMException__