Package tifauv.jplop.core.storage

Examples of tifauv.jplop.core.storage.StorageException


      try {
        DocumentBuilder builder = factory.newDocumentBuilder();
        load(builder.parse(file));
        m_logger.info(getObject().size() + " posts loaded.");
      } catch (Exception e) {
        throw new StorageException("Could not load the history file", e);
      }
    }
    else
      m_logger.debug("The history file does not exist.");
  }
View Full Code Here


      try {
        DocumentBuilder builder = factory.newDocumentBuilder();
        load(builder.parse(file));
        m_logger.info(getObject().size() + " users loaded.");
      } catch (Exception e) {
        throw new StorageException("Could not load the user base file", e);
      }
    }
    else
      m_logger.debug("The users base file does not exist.");
  }
View Full Code Here

TOP

Related Classes of tifauv.jplop.core.storage.StorageException

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.