2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / Mono.Debugger.Soft / Mono.Debugger.Soft / InvocationException.cs
blobd8ae2e621e585d9b9d31f75b1222dd9c40ee74a8
1 using System;
2 using System.Collections.Generic;
4 namespace Mono.Debugger.Soft
6 public class InvocationException : Exception {
8 ObjectMirror exception;
10 public InvocationException (ObjectMirror exception) {
11 this.exception = exception;
14 public ObjectMirror Exception {
15 get {
16 return exception;