Skip to content
Snippets Groups Projects

Non-minor rewrites of the design spec to accomodate new requirements

Merged Paul Nitzke requested to merge design-change into master
9 files
+ 179
117
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -22,7 +22,7 @@ namespace Transform.Convert
@@ -22,7 +22,7 @@ namespace Transform.Convert
/// <exception cref="Exception"></exception>
/// <exception cref="Exception"></exception>
public void SyntaxError([NotNull] IRecognizer recognizer, [Nullable] IToken offendingSymbol, int line, int charPositionInLine, [NotNull] string msg, [Nullable] RecognitionException e)
public void SyntaxError([NotNull] IRecognizer recognizer, [Nullable] IToken offendingSymbol, int line, int charPositionInLine, [NotNull] string msg, [Nullable] RecognitionException e)
{
{
throw new Exception(msg);
throw new Exception("Error in MatrixMarket header line: " + msg);
}
}
}
}
}
}
Loading