Veil.VeilParserException.VeilParserException C# (CSharp) Method

VeilParserException() public method

Create an exception with the supplied message
public VeilParserException ( string message, SourceLocation location ) : System
message string
location Veil.Parser.SourceLocation
return System
        public VeilParserException(string message, SourceLocation location)
            : base(message)
        {
	        Location = location;
        }
    }
VeilParserException