Package net.pterodactylus.sone.database

Examples of net.pterodactylus.sone.database.DatabaseException


      for (String knownPostId : knownPosts) {
        configuration.getStringValue("KnownPosts/" + postCounter++ + "/ID").setValue(knownPostId);
      }
      configuration.getStringValue("KnownPosts/" + postCounter + "/ID").setValue(null);
    } catch (ConfigurationException ce1) {
      throw new DatabaseException("Could not save database.", ce1);
    } finally {
      lock.readLock().unlock();
    }
  }
View Full Code Here


      for (String knownReplyId : knownPostReplies) {
        configuration.getStringValue("KnownReplies/" + replyCounter++ + "/ID").setValue(knownReplyId);
      }
      configuration.getStringValue("KnownReplies/" + replyCounter + "/ID").setValue(null);
    } catch (ConfigurationException ce1) {
      throw new DatabaseException("Could not save database.", ce1);
    } finally {
      lock.readLock().unlock();
    }
  }
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.database.DatabaseException

Copyright © 2018 www.massapicom. 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.