~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Debugging/Mono.Debugging.Evaluation/AsyncOperationManager.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
                                                ST.Monitor.PulseAll (operationsToCancel);
57
57
                                        }
58
58
                                        if (wasAborted)
59
 
                                                throw new EvaluatorException ("Aborted.");
 
59
                                                throw new EvaluatorAbortedException ();
60
60
                                        else
61
61
                                                throw new TimeOutException ();
62
62
                                }
69
69
                                operationsToCancel.Remove (methodCall);
70
70
                                ST.Monitor.PulseAll (operationsToCancel);
71
71
                                if (methodCall.Aborted) {
72
 
                                        throw new EvaluatorException ("Aborted.");
 
72
                                        throw new EvaluatorAbortedException ();
73
73
                                }
74
74
                        }
75
75