@Transactional(readOnly = true)
  public List<MotivoReclamacion> findPageMotivoReclamacion(
      String sortColumnName, boolean sortAscending, int startRow, int maxResults) throws Exception {
    List<MotivoReclamacion> entity = null;

    try {
      entity = motivoReclamacionDAO.findPage(sortColumnName, sortAscending, startRow, maxResults);
    } catch (Exception e) {
      throw new ZMessManager().new FindingException("MotivoReclamacion Count");
    } finally {
    }

    return entity;
  }