Microsoft.Automata.AutomataException.GetMessage C# (CSharp) Method

GetMessage() private static method

private static GetMessage ( AutomataExceptionKind kind ) : string
kind AutomataExceptionKind
return string
        private static string GetMessage(AutomataExceptionKind kind)
        {
            switch (kind)
            {
                case AutomataExceptionKind.AutomatonIsNondeterministic:
                    return AutomatonIsNotDeterministic;
                case AutomataExceptionKind.AutomatonIsNotEpsilonfree:
                    return AutomatonIsNotEpsilonfree;
                case AutomataExceptionKind.AutomatonMustBeNonempty:
                    return AutomatonMustBeNonempty;
                case AutomataExceptionKind.AutomatonMustNotContainDeadStates:
                    return AutomatonMustNotContainDeadStates;
                case AutomataExceptionKind.CharacterEncodingIsUnspecified:
                    return CharacterEncodingIsUnspecified;
                case AutomataExceptionKind.ContextCannotBePopped:
                    return ContextCannotBePopped;
                case AutomataExceptionKind.InputSortsMustBeIdentical:
                    return InputSortsMustBeIdentical;
                case AutomataExceptionKind.InvalidAutomatonName:
                    return InvalidAutomatonName;
                case AutomataExceptionKind.MisplacedEndAnchor:
                    return MisplacedEndAnchor;
                case AutomataExceptionKind.MisplacedStartAnchor:
                    return MisplacedStartAnchor;
                case AutomataExceptionKind.NoFinalState:
                    return NoFinalState;
                case AutomataExceptionKind.RegexConstructNotSupported:
                    return RegexConstructNotSupported;
                case AutomataExceptionKind.CharSetMustBeNonempty:
                    return CharSetMustBeNonempty;
                case AutomataExceptionKind.SolversAreNotIdentical:
                    return SolversMustBeIdentical;
                case AutomataExceptionKind.TheoryIsNotAsserted:
                    return TheoryMustBeAsserted;
                case AutomataExceptionKind.UnrecognizedRegex:
                    return UnrecognizedRegex;
                case AutomataExceptionKind.InternalError:
                    return InternalError;
                default:
                    return kind.ToString();
            }
        }