ADLib.ADException.ADException C# (CSharp) 메소드

ADException() 공개 메소드

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