Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2013-04-04 01:23:16 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2013-04-04 01:23:54 +0400
commit0bf20c9542dd724a4749e4df831630ec7a1f464b (patch)
treecbae9c984bd21e1d29c02e8fa2ebcba20717811c
parentcaf5fc0152b126433d973716d1d5af1e11667c8f (diff)
[Mono.Debugger.Soft] Make CommandException public
-rw-r--r--mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachine.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachine.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachine.cs
index 61c284dfcfc..d6a2a7896fc 100644
--- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachine.cs
+++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/VirtualMachine.cs
@@ -681,9 +681,9 @@ namespace Mono.Debugger.Soft
}
}
- internal class CommandException : Exception {
+ public class CommandException : Exception {
- public CommandException (ErrorCode error_code) : base ("Debuggee returned error code " + error_code + ".") {
+ internal CommandException (ErrorCode error_code) : base ("Debuggee returned error code " + error_code + ".") {
ErrorCode = error_code;
}