Mono.Debugger.ExceptionCatchPoint.ExceptionCatchPoint C# (CSharp) Method

ExceptionCatchPoint() private method

private ExceptionCatchPoint ( ThreadGroup group, TargetType exception, bool unhandled ) : System
group ThreadGroup
exception Mono.Debugger.Languages.TargetType
unhandled bool
return System
        internal ExceptionCatchPoint(ThreadGroup group, TargetType exception, bool unhandled)
            : base(EventType.CatchException, exception.Name, group)
        {
            this.exception = exception;
            this.Unhandled = unhandled;
        }

Same methods

ExceptionCatchPoint::ExceptionCatchPoint ( int index, ThreadGroup group, string name, bool unhandled ) : System