DotNetWorkQueue.Exceptions.CompileException.CompileException C# (CSharp) Method

CompileException() public method

Initializes a new instance of the CompileException class.
public CompileException ( string message, string compileCode ) : System
message string The message.
compileCode string The code being compiled.
return System
        public CompileException(string message, string compileCode)
            : base(message)
        {
            CompileCode = compileCode;
        }

Same methods

CompileException::CompileException ( string message, Exception inner, string compileCode ) : System