Erro ao gerar relatório no Ireport no netbeans(RESOLVIDO)

Bom dia.
Estou tentando gerar um relatório no netbeans, mais o mesmo não é gerado, segue a tela de print abaixo do relatório:

o o aviso de erro é este no netbeans:

run:
Error: net.sf.jasperreports.engine.JRException: java.io.FileNotFoundException: relatório.jasper
CONSTRUÍDO COM SUCESSO (tempo total: 1 minuto 8 segundos)

codigo da chamada do relatório:

private void jmiRelatListProdutoActionPerformed(java.awt.event.ActionEvent evt) {                                                    
        // abrir relatorio listagem de produtos
        this.con = new ConnectionFactory().getConnection();
        String src = "relatório.jasper";
        JasperPrint jasperPrint = null;
        try {
            jasperPrint = JasperFillManager.fillReport(src, null, con);
        } catch (JRException ex) {
            System.out.println("Error: "+ex);
        }
        JasperViewer view = new JasperViewer(jasperPrint, false);
        view.setVisible(true);
    }

Achei o motivo de nao gerar.