Пример #1
0
        public SqlCompileMessage(CompileMessageLevel level, string text, SourceLocation location)
        {
            if (String.IsNullOrEmpty(text))
                throw new ArgumentNullException("text");

            Level = level;
            Text = text;
            Location = location;
        }
Пример #2
0
        public SqlCompileMessage(CompileMessageLevel level, string text, SourceLocation location)
        {
            if (String.IsNullOrEmpty(text))
            {
                throw new ArgumentNullException("text");
            }

            Level    = level;
            Text     = text;
            Location = location;
        }
Пример #3
0
 public SqlCompileMessage(CompileMessageLevel level, string text)
     : this(level, text, null)
 {
 }
Пример #4
0
 public SqlCompileMessage(CompileMessageLevel level, string text)
     : this(level, text, null)
 {
 }