21 lines
393 B
C#
21 lines
393 B
C#
using System;
|
|
|
|
namespace Mono.Debugger.Soft
|
|
{
|
|
public class VMDisconnectedException : Exception {
|
|
|
|
public VMDisconnectedException () : base () {
|
|
}
|
|
}
|
|
|
|
public class VMCrashException : VMDisconnectedException {
|
|
public readonly string Dump;
|
|
public readonly ulong Hash;
|
|
|
|
public VMCrashException (string dump, ulong hash) : base () {
|
|
this.Dump = dump;
|
|
this.Hash = hash;
|
|
}
|
|
}
|
|
}
|