1 5 6 package com.hp.hpl.jena.rdf.arp; 7 8 12 class ExceptionToken extends Token implements RDFParserConstants { 13 14 final Exception value; 15 final int errorCode; 16 17 ExceptionToken(int errCode,Location where,Exception v) { 18 super(X_SAX_EX,where); 19 value = v; 20 errorCode = errCode; 21 } 22 public String toString() { 23 return value.getMessage(); 24 } 25 26 } 27 28 54 | Popular Tags |