fit.Test.Double.SampleDomain.ThrowException C# (CSharp) Метод

ThrowException() публичный Метод

public ThrowException ( ) : string
Результат string
        public string ThrowException()
        {
            if (Message == "OK") return Message;
            if (Message == null) throw new NullReferenceException();
            throw new ApplicationException(Message);
        }