Esempio n. 1
0
        public SqlCompileMessage(CompileMessageLevel level, string text, SourceLocation location)
        {
            if (String.IsNullOrEmpty(text))
                throw new ArgumentNullException("text");

            Level = level;
            Text = text;
            Location = location;
        }
Esempio n. 2
0
        public SqlCompileMessage(CompileMessageLevel level, string text, SourceLocation location)
        {
            if (String.IsNullOrEmpty(text))
            {
                throw new ArgumentNullException("text");
            }

            Level    = level;
            Text     = text;
            Location = location;
        }
Esempio n. 3
0
 public SqlCompileMessage(CompileMessageLevel level, string text)
     : this(level, text, null)
 {
 }
Esempio n. 4
0
 public SqlCompileMessage(CompileMessageLevel level, string text)
     : this(level, text, null)
 {
 }