Пример #1
0
        public ExceptionHandler(HandledExceptions handled)
        {
            if (handled == null)
                throw new ArgumentNullException("handled");

            Handled = handled;
            Statements = new List<SqlStatement>();
        }
        public ExceptionHandler(HandledExceptions handled)
        {
            if (handled == null)
            {
                throw new ArgumentNullException("handled");
            }

            Handled    = handled;
            Statements = new List <SqlStatement>();
        }