Jellyfish.Commands.CommandRuntimeException.CommandRuntimeException C# (CSharp) Method

CommandRuntimeException() public method

public CommandRuntimeException ( FailureType failure, string commandName, string message, Exception ex, Exception fallbackException ) : System
failure FailureType
commandName string
message string
ex System.Exception
fallbackException System.Exception
return System
        public CommandRuntimeException(FailureType failure, string commandName, string message, Exception ex, Exception fallbackException) : base(message, ex)
        {
            this.FailureCause = failure;
            this.FallbackException = fallbackException;
            this.CommandName = commandName;
        }
    }
CommandRuntimeException