URIException.h 771 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_print_URIException__
  3. #define __javax_print_URIException__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace net
  11. {
  12. class URI;
  13. }
  14. }
  15. namespace javax
  16. {
  17. namespace print
  18. {
  19. class URIException;
  20. }
  21. }
  22. }
  23. class javax::print::URIException : public ::java::lang::Object
  24. {
  25. public:
  26. virtual jint getReason() = 0;
  27. virtual ::java::net::URI * getUnsupportedURI() = 0;
  28. static const jint URIInaccessible = 1;
  29. static const jint URIOtherProblem = -1;
  30. static const jint URISchemeNotSupported = 2;
  31. static ::java::lang::Class class$;
  32. } __attribute__ ((java_interface));
  33. #endif // __javax_print_URIException__