diff --git a/Assignment 1/Program.cs b/Assignment 1/Program.cs index 3fef73d..2eaddc6 100644 --- a/Assignment 1/Program.cs +++ b/Assignment 1/Program.cs @@ -846,10 +846,7 @@ namespace Assignment_1 public class ParserException : Exception { /// - /// Importance is used to signify how the parser should respond to the error. - /// A code of 3 or greater is a critical error; the application will throw the error further up the call and exit. - /// 0 implies the line may be retried. - /// 1 should imply the current block is not valid and should be retried. + /// Custom expression that will also pass the LinePosition & importance of the error (not implemented) /// public int Importance = 0; public long LinePosition = -1;