NPLMono.NPLLex.ThrowError C# (CSharp) 메소드

ThrowError() 공개 정적인 메소드

public static ThrowError ( LexState ls, string errorMsg ) : void
ls LexState
errorMsg string
리턴 void
        public static void ThrowError(LexState ls, string errorMsg)
        {
            ls.bSucceed = false;
            throw new Exception(errorMsg);
        }