Package org.openstreetmap.osmosis.pgsnapshot.common

Examples of org.openstreetmap.osmosis.pgsnapshot.common.NoSuchRecordException


    OsmUser user;
   
    try {
      user = jdbcTemplate.queryForObject(SELECT_USER, rowMapper, userId);
    } catch (EmptyResultDataAccessException e) {
      throw new NoSuchRecordException("User " + userId + " doesn't exist.", e);
    }
   
    return user;
  }
View Full Code Here


   
    try {
      entity = jdbcTemplate.queryForObject(entityMapper.getSqlSelect(true, false), entityMapper.getRowMapper(),
          entityId);
    } catch (EmptyResultDataAccessException e) {
      throw new NoSuchRecordException(entityMapper.getEntityName()
          + " " + entityId + " doesn't exist.", e);
    }
   
    return entity;
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.pgsnapshot.common.NoSuchRecordException

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.