// // // // // $Revision: 1687 $ // using System; namespace Debugger { public class ExceptionEventArgs: ProcessEventArgs { bool @continue; Exception exception; public bool Continue { get { return @continue; } set { @continue = value; } } public Exception Exception { get { return exception; } } public ExceptionEventArgs(Process process, Exception exception):base(process) { this.exception = exception; } } }