@Transactional(readOnly = true)
  public MotivoReclamacion getMotivoReclamacion(Long idMotRecl) throws Exception {
    MotivoReclamacion entity = null;

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

    return entity;
  }