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

CompileException() public method

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

Same methods

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