Exemplo n.º 1
0
        /// <summary>
        /// Clears input expressions for all inputs
        /// </summary>
        /// <exception cref="DmnBuilderException">Throws <see cref="DmnBuilderException"/> when the definition has already been built</exception>
        private void ClearInputs()
        {
            if (IsBuilt)
            {
                throw Logger.Error <DmnBuilderException>("Table rule is already built");
            }

            InputsInternal.Clear();
        }