fit.Test.Double.SampleDomain.Throw C# (CSharp) 메소드

Throw() 공개 메소드

public Throw ( string message ) : string
message string
리턴 string
        public string Throw(string message)
        {
            if (message == null) throw new NullReferenceException();
            if (message == "OK") return message;
            throw new ApplicationException(message);
        }