Esempio n. 1
0
 public void rollback(PrintStream stream) {
   try {
     rollback();
   } catch (RetsServerException e) {
     e.printStackTrace(stream);
   }
 }
Esempio n. 2
0
 public void close(PrintStream stream) {
   try {
     close();
   } catch (RetsServerException e) {
     mSession = null;
     e.printStackTrace(stream);
   }
 }