Beispiel #1
0
 public void closeStore(int store, Session session)
 {
     if (store < 0)
     {
         throw new ArgumentException("illegal store number");
     }
     db.closeStore(store, session);
 }
Beispiel #2
0
 public void closeStore(int store, int session)
 {
     if (store < 0)
     {
         throw new ILLArgumentException("Invalid store id");
     }
     db.closeStore(store, session);
 }