Abraham.DLXException.DLXException C# (CSharp) Method

DLXException() public method

public DLXException ( string msg, int line, int colum ) : System
msg string
line int
colum int
return System
        public DLXException(string msg,int line,int colum )
        {
            this.Line = line;
            this.Colum = colum;
            this.msg = msg;
        }