Mono.Debugger.Backend.SingleSteppingEngine.OperationException.OperationException C# (CSharp) Method

OperationException() public method

public OperationException ( SingleSteppingEngine sse, TargetAddress ip, TargetAddress exc, bool unhandled ) : System
sse SingleSteppingEngine
ip TargetAddress
exc TargetAddress
unhandled bool
return System
            public OperationException(SingleSteppingEngine sse, TargetAddress ip, TargetAddress exc,
					   bool unhandled)
                : base(sse, null)
            {
                this.ip = ip;
                this.exc = exc;
                this.unhandled = unhandled;
            }
SingleSteppingEngine.OperationException