예제 #1
0
 internal HystrixException(FailureTypeEnum failureType, Type commandType, string commandKey, string message, Exception cause, Exception fallbackException) : base(message, cause)
 {
     this.FailureType        = failureType;
     this.CommandKey         = commandKey;
     this.CommandType        = commandType;
     this.ExecutionException = cause;
     this.FallbackException  = fallbackException;
 }
예제 #2
0
 internal HystrixException(FailureTypeEnum failureType, Type commandType, string commandKey, string message, Exception cause)
     : this(failureType, commandType, commandKey, message, cause, null)
 {
 }