/src/dom-error.vala

http://libgdom3.googlecode.com/ · Vala · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 592daed028f07568f2a290ecda13f2b0 MD5 · raw file

  1. using GLib;
  2. using Gee;
  3. namespace DOM {
  4. public errordomain Exception {
  5. NOT_FOUND_ERR,
  6. INDEX_SIZE_ERR,
  7. WRONG_DOCUMENT_ERR,
  8. INUSE_ATTRIBUTE_ERR,
  9. HIERARCHY_REQUEST_ERR
  10. }
  11. }