this.reader = new BufferedReader(reader);
}
public TranslationTableParser(String url) {
try {
this.url = new IRIResolver().resolve(url);;
this.reader = new BufferedReader(new FileReader(new File(new URI(this.url))));
} catch (FileNotFoundException fnfex) {
throw new D2RQException("File not found at URL: " + this.url);
} catch (URISyntaxException usynex) {
throw new D2RQException("Malformed URI: " + this.url);