Artemis.Engine.DisplayManager.UntogglableException C# (CSharp) 메소드

UntogglableException() 개인적인 정적인 메소드

private static UntogglableException ( string property, string element ) : DisplayManagerException
property string
element string
리턴 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
                    )
                );
        }