Ancestry.QueryProcessor.AncestryException.AncestryException C# (CSharp) Method

AncestryException() public method

public AncestryException ( ErrorSeverity severity, int errorCode, string message ) : System
severity ErrorSeverity
errorCode int
message string
return System
        public AncestryException(ErrorSeverity severity, int errorCode, string message)
            : base(message)
        {
            _code = errorCode;
            _severity = severity;
            HResult = OR_E_EXCEPTION;
        }

Same methods

AncestryException::AncestryException ( ErrorSeverity severity, int errorCode, string message, Exception innerException ) : System
AncestryException::AncestryException ( ErrorSeverity severity, int code, string message, string details, string serverContext, AncestryException innerException ) : System
AncestryException::AncestryException ( Exception exception ) : System
AncestryException::AncestryException ( Exception exception, Exception innerException ) : System
AncestryException::AncestryException ( ResourceManager resourceManager, int errorCode, ErrorSeverity severity, Exception innerException ) : System
AncestryException::AncestryException ( System info, System context ) : System
AncestryException::AncestryException ( int errorCode, string message ) : System
AncestryException::AncestryException ( string message ) : System