Esempio n. 1
0
        public void AddException(string message, string filename, int lineNumber, int position, string line, ErrorCategory category)
        {
            var exception = new ChirpyException(message, filename, lineNumber, position, line, category);

            AddException(exception);
        }
Esempio n. 2
0
        public void AddException(string message, string filename, ErrorCategory category)
        {
            var exception = new ChirpyException(message, filename, category);

            AddException(exception);
        }
Esempio n. 3
0
 public void AddException(ChirpyException exception)
 {
     Exceptions.Add(exception);
 }