@Transactional(readOnly = true)
  public Long findTotalNumberMotivoReclamacion() throws Exception {
    Long entity = null;

    try {
      entity = motivoReclamacionDAO.count();
    } catch (Exception e) {
      throw new ZMessManager().new FindingException("MotivoReclamacion Count");
    } finally {
    }

    return entity;
  }