Deveel.Data.BlockContext.IExceptionInitScope C# (CSharp) Method

IExceptionInitScope() private method

private IExceptionInitScope ( string exceptionName ) : DeclaredException
exceptionName string
return DeclaredException
        DeclaredException IExceptionInitScope.FindExceptionByName(string exceptionName)
        {
            int errorCode;
            if (!exceptions.TryGetValue(exceptionName, out errorCode))
                return null;

            return new DeclaredException(errorCode, exceptionName);
        }

Same methods

BlockContext::IExceptionInitScope ( int errorCode, string exceptionName ) : void