@Override
 public void deleteAllUserRefs(UUID userID) throws ClassNotFoundException, SQLException {
   try {
     verwaltungServer.deleteAllUserRefs(userID);
   } catch (ClassNotFoundException e) {
     Log.writeError(e, this.getClass());
     throw e;
   } catch (SQLException e) {
     Log.writeError(e, this.getClass());
     throw e;
   }
 }