System.Data.Constraint.CheckStateForProperty C# (CSharp) Method

CheckStateForProperty() protected method

protected CheckStateForProperty ( ) : void
return void
        protected void CheckStateForProperty()
        {
            try
            {
                CheckState();
            }
            catch (Exception e) when (Common.ADP.IsCatchableExceptionType(e))
            {
                throw ExceptionBuilder.BadObjectPropertyAccess(e.Message);
            }
        }