Artemis.Engine.DisplayManager.UntogglableException C# (CSharp) Method

UntogglableException() private static method

private static UntogglableException ( string property, string element ) : DisplayManagerException
property string
element string
return DisplayManagerException
        private static DisplayManagerException UntogglableException(string property, string element)
        {
            return new DisplayManagerException(
                String.Format(
                    "{0} is not set to be togglable. To change this, add a " +
                    "{1} element to the root element of the .gamesetup file.",
                    property, element
                    )
                );
        }