Automatonymous.NotAcceptedStateMachineException.NotAcceptedStateMachineException C# (CSharp) Method

NotAcceptedStateMachineException() public method

public NotAcceptedStateMachineException ( Type sagaType, Type messageType, System.Guid correlationId, string currentState, Exception exception ) : System
sagaType System.Type
messageType System.Type
correlationId System.Guid
currentState string
exception System.Exception
return System
        public NotAcceptedStateMachineException(Type sagaType, Type messageType, Guid correlationId, string currentState, Exception exception)
            : base($"Not accepted in state {currentState}", sagaType, messageType, correlationId, exception)
        {
        }
    }
NotAcceptedStateMachineException