Example #1
0
 CiException StatementException(CiStatement statement, string format, params object[] args)
 {
     return(StatementException(statement, string.Format(format, args)));
 }
Example #2
0
 protected override void WriteChild(CiStatement statement)
 {
     OpenChild();
     statement.Accept(this);
     CloseChild();
 }
Example #3
0
 CiException StatementException(CiStatement statement, string message)
 {
     return(new CiException(this.Filename, statement.Line, message));
 }