Пример #1
0
 public VMException(int lineNum, String msg, VMExceptionType type) : base(msg)
 {
     LineNum = lineNum;
     Type    = type;
 }
Пример #2
0
 public VMException Throw(String msg, VMExceptionType type)
 {
     return(new VMException(machine.GetCurrentInsLine(), msg, type));
 }