ADLib.ADException.ADException C# (CSharp) Method

ADException() public method

public ADException ( string message = null, Exception wrapped = null ) : System
message string
wrapped System.Exception
return System
        public ADException(string message =null, Exception wrapped = null)
            : base(message)
        {
            Wrapped = wrapped;
        }
ADException