1 30 35 36 package com.hp.hpl.jena.rdf.arp; 37 38 42 public interface ARPErrorNumbers { 43 48 public int EM_IGNORE = 0; 49 52 public int EM_WARNING = 1; 53 56 public int EM_ERROR = 2; 57 60 public int EM_FATAL = 3; 61 62 76 77 public int IGN_PRIVATE_XMLLANG = 1; 78 79 85 public int IGN_XMLBASE_USED = 2; 86 94 public int IGN_XMLBASE_SIGNIFICANT = 3; 95 102 public int IGN_DAML_COLLECTION = 4; 103 104 108 109 public int IGN_NO_BASE_URI_SPECIFIED = 5; 110 111 112 117 118 public int WARN_XMLBASE_MISSING = 100; 119 124 public int WARN_UNQUALIFIED_RDF_ATTRIBUTE = 101; 125 134 public int WARN_UNQUALIFIED_ATTRIBUTE = 102; 135 141 public int WARN_UNKNOWN_RDF_ATTRIBUTE = 103; 142 147 public int WARN_UNQUALIFIED_ELEMENT = 104; 148 149 162 163 public int WARN_REDEFINITION_OF_ID = 105; 164 170 public int WARN_UNKNOWN_PARSETYPE = 106; 171 180 public int WARN_MALFORMED_URI = 107; 181 188 public int WARN_BAD_NAME = 108; 189 201 public int WARN_RELATIVE_NAMESPACE_URI_DEPRECATED = 109; 202 207 215 216 public int WARN_BAD_XML = 111; 217 224 public int WARN_MINOR_INTERNAL_ERROR = 112; 225 230 public int WARN_UNKNOWN_RDF_ELEMENT = 113; 231 236 public int WARN_RDF_NN_AS_TYPE = 114; 237 242 public int WARN_MALFORMED_XMLLANG = 115; 243 255 public int WARN_BAD_XMLLANG = 116; 256 260 public int WARN_DEPRECATED_XMLLANG = 117; 261 266 public int WARN_UNKNOWN_XML_ATTRIBUTE = 118; 267 272 public int WARN_PROCESSING_INSTRUCTION_IN_RDF = 119; 273 280 public int WARN_LEGAL_REUSE_OF_ID = 120; 281 288 public int WARN_STRING_COMPOSING_CHAR = 121; 289 295 public int WARN_QNAME_AS_ID = 122; 296 297 311 public int WARN_URI_COMPOSING_CHAR = 123; 312 313 318 public int WARN_BAD_NAMESPACE_URI = 124; 319 327 public int WARN_IN_STRICT_MODE = 125; 328 329 333 public int WARN_SAX_WARNING = 126; 334 335 341 public int WARN_BAD_RDF_NAMESPACE_URI = 127; 342 343 349 public int WARN_BAD_XML_NAMESPACE_URI = 128; 350 351 358 public int WARN_ENCODING_MISMATCH = 129; 359 364 public int WARN_RESOLVING_URI_AGAINST_EMPTY_BASE = 130; 365 366 371 public int WARN_STRING_NOT_NORMAL_FORM_C = 131; 372 373 383 public int WARN_UNSUPPORTED_ENCODING = 132; 384 385 395 public int WARN_NON_IANA_ENCODING = 133; 396 397 405 public int WARN_NONCANONICAL_IANA_NAME =134; 406 407 412 public int ERR_INTERNAL_ERROR = 200; 413 419 public int ERR_SYNTAX_ERROR = 201; 420 425 public int ERR_NOT_WHITESPACE = 202; 426 432 433 public int ERR_ABOUTEACH_NOT_TOPLEVEL = 203; 434 438 public int ERR_LI_AS_TYPE = 204; 439 443 public int ERR_BAD_RDF_ELEMENT = 205; 444 450 public int ERR_BAD_RDF_ATTRIBUTE = 206; 451 457 public int ERR_STRING_NOT_NORMAL_FORM_C = 207; 458 466 public int ERR_URI_NOT_NORMAL_FORM_C = 208; 467 471 public int ERR_SAX_ERROR = 209; 472 473 474 482 public int ERR_ENCODING_MISMATCH = 210; 483 484 489 public int ERR_RESOLVING_URI_AGAINST_NULL_BASE = 211; 490 495 public int ERR_UTF_ENCODING = 212; 498 public int ERR_GENERIC_IO = 213; 499 501 public int ERR_UNABLE_TO_RECOVER = 300; 502 503 507 public int ERR_SAX_FATAL_ERROR = 301; 508 509 } 510 | Popular Tags |