예제 #1
0
 /// <summary> Removes sqlErrors.Handler from the stack as long 'sqlErrors' is not the internal VESQLErrors .Handler object </summary>
 /// <param name="sqlErrors"></param>
 public void Remove(VESQLErrors sqlErrors)
 {
     if (sqlErrors != sqlHandler)
     {
         Remove(sqlErrors.Handler);
     }
 }
예제 #2
0
 /// <summary> Adds sqlErrors.Handler to the handlers stack </summary>
 /// <param name="sqlErrors"></param>
 public void Add(VESQLErrors sqlErrors)
 {
     Add(sqlErrors.Handler);
 }