Example #1
0
 public InjectorExceptionEventArgs(Exception ex, InjectorExceptionType type)
     : this(ex.Message, ex, type)
 {
 }
Example #2
0
 public InjectorExceptionEventArgs(string message, Exception innerException, InjectorExceptionType type)
 {
     exception     = new Exception(message, innerException);
     exceptionType = type;
 }
Example #3
0
 public InjectorExceptionEventArgs(string message, InjectorExceptionType type)
     : this(message, null, type)
 {
 }