ArenaNet.Sprout.IoC.InvalidContextStateException.InvalidContextStateException C# (CSharp) Method

InvalidContextStateException() public method

public InvalidContextStateException ( ContextState expectedState, ContextState currentState ) : System
expectedState ContextState
currentState ContextState
return System
        public InvalidContextStateException(ContextState expectedState, ContextState currentState)
            : base("Expected: " + expectedState + ", but current state is: " + currentState)
        {
        }
InvalidContextStateException