if (line.equals(NO_TOKEN)) {
throw new NoSybosTokenException();
}
Matcher wtMatcher = WRONG_TOKEN.matcher(line);
if (wtMatcher.matches()) {
throw new WrongSybosTokenException(wtMatcher.group(1));
}
reader.reset();
Document d = db.parse(new InputSource(reader));
return d;