public void createDB() throws IOException {

    boolean dbExists = checkDB();
    if (dbExists) {
    } else {
      Logging.Log(LOG_TAG, "createDB() - Database does not exist");
      this.getReadableDatabase();
      this.close();
      try {
        copyDB();
      } catch (IOException e) {
        throw new Error("Error copying database");
      }
    }
  }