pascalabcnet/Debugger.Core/Src/Debugger/ExceptionEventArgs.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

38 lines
665 B
C#

// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision: 1687 $</version>
// </file>
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;
}
}
}