Examples of UserNotFoundException


Examples of tigase.db.UserNotFoundException

          return xmldb.getSubnodes(user, subnode);
        } catch (Exception ex) {
          throw new TigaseDBException("Unknown repository problem: ", ex);
        }
      } else {
        throw new UserNotFoundException(USER_STR+user+NOT_FOUND_STR, e);
      }
    } // end of try-catch
  }
View Full Code Here

Examples of tigase.db.UserNotFoundException

          return xmldb.getKeys(user, subnode);
        } catch (Exception ex) {
          throw new TigaseDBException("Unknown repository problem: ", ex);
        }
      } else {
        throw new UserNotFoundException(USER_STR+user+NOT_FOUND_STR, e);
      }
    } // end of try-catch
  }
View Full Code Here

Examples of tigase.db.UserNotFoundException

    throws UserNotFoundException {
    try {
      xmldb.removeData(user, subnode, key);
    } catch (NodeNotFoundException e) {
      if (!autoCreateUser) {
        throw new UserNotFoundException(USER_STR+user+NOT_FOUND_STR, e);
      }
    } // end of try-catch
  }
View Full Code Here

Examples of tigase.db.UserNotFoundException

    throws UserNotFoundException {
    try {
      xmldb.removeSubnode(user, subnode);
    } catch (NodeNotFoundException e) {
      if (!autoCreateUser) {
        throw new UserNotFoundException(USER_STR+user+NOT_FOUND_STR, e);
      }
    } // end of try-catch
  }
View Full Code Here

Examples of tigase.db.UserNotFoundException

        }
        if (result <= 0) {
          if (autoCreate) {
            result = addUserRepo(user_id);
          } else {
            throw new UserNotFoundException("User does not exist: " + user_id);
          } // end of if (autoCreate) else
        } // end of if (isnext) else
      }
    } finally {
      release(null, rs);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.