mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
namespace Debugger |
|
{ |
|
/// <summary> |
|
/// Type of exception thrown by the Debugger. |
|
/// </summary> |
|
public class DebuggerException: System.Exception |
|
{ |
|
public DebuggerException() {} |
|
public DebuggerException(string message): base(message) {} |
|
public DebuggerException(string message, params object[] args): base(string.Format(message, args)) {} |
|
public DebuggerException(string message, System.Exception inner): base(message, inner) {} |
|
} |
|
|
|
/// <summary> |
|
/// An exception that is thrown when the debugged process unexpectedly exits. |
|
/// </summary> |
|
public class ProcessExitedException: DebuggerException |
|
{ |
|
string processName = null; |
|
|
|
/// <summary> |
|
/// The name of the process that has exited. |
|
/// </summary> |
|
public string ProcessName { |
|
get { return processName; } |
|
} |
|
|
|
/// <summary> |
|
/// Creates a ProcessExitedException for an unnamed process. |
|
/// </summary> |
|
public ProcessExitedException(): base("Process exited") {} |
|
|
|
/// <summary> |
|
/// Creates a ProcessExitedException for a process. |
|
/// </summary> |
|
/// <param name="processName">The name of the process</param> |
|
public ProcessExitedException(string processName): base(string.Format("Process '{0}' exited.", processName)) { |
|
this.processName = processName; |
|
} |
|
|
|
} |
|
}
|
|
|