Exemplo n.º 1
0
 public SqlException(string message, Exception ex, ISqlSection sql)
     : base(message, ex)
 {
     _innerStackTrace = ex.StackTrace;
     if (sql != null)
         _Sql = sql.ToDbCommandText();
 }
Exemplo n.º 2
0
 public SqlException(string message, Exception ex, ISqlSection sql)
     : base(message, ex)
 {
     _innerStackTrace = ex.StackTrace;
     if (sql != null)
     {
         _Sql = sql.ToDbCommandText();
     }
 }
Exemplo n.º 3
0
 public SqlException(Exception ex, ISqlSection sql) : this(ex.Message, ex, sql)
 {
 }
Exemplo n.º 4
0
 public SqlException(Exception ex, ISqlSection sql) : this(ex.Message, ex, sql) { }