//catch (JenaException ex) { throw new TurtleParseException(ex.getMessage(), ex) ; }
}
public static void parse(Reader reader, ParseHandler handler)
{
SSE_ParserCore p = new SSE_ParserCore(reader) ;
p.setHandler(handler) ;
try
{
p.parse() ;
}
catch (ParseException ex)
{ throw new SSEParseException(ex.getMessage(), ex.currentToken.beginLine, ex.currentToken.beginColumn) ; }
catch (TokenMgrError tErr)
{