Inheritance: System.Exception
Beispiel #1
0
        private void error(string msg, int row, int colum)
        {
            line_error = true;
            DLXException e = new DLXException(msg, line, colum);

            result.Errors.Add(e);
            throw e;
        }
Beispiel #2
0
 private void error(string msg, int row, int colum)
 {
     line_error = true;
     DLXException e = new DLXException(msg, line, colum);
     result.Errors.Add(e);
     throw e;
 }