public CommandAnonymousInnerClass2(CommandContextInterceptorTest outerInstance,
                                    ExceptionThrowingCmd innerCommand1, ExceptionThrowingCmd innerCommand2)
 {
     _outerInstance = outerInstance;
     _innerCommand1 = innerCommand1;
     _innerCommand2 = innerCommand2;
 }
 public ExceptionThrowingCmd(CommandContextInterceptorTest outerInstance, System.Exception e)
 {
     _outerInstance   = outerInstance;
     Executed         = false;
     ExceptionToThrow = e;
 }
 public CommandAnonymousInnerClass3(CommandContextInterceptorTest outerInstance,
                                    ExceptionThrowingCmd innerCommand)
 {
     _outerInstance = outerInstance;
     _innerCommand  = innerCommand;
 }
 public CommandAnonymousInnerClass(CommandContextInterceptorTest outerInstance)
 {
     _outerInstance = outerInstance;
 }
 public IdentifiableRuntimeException(CommandContextInterceptorTest outerInstance, int id)
 {
     _outerInstance = outerInstance;
     Id             = id;
 }