From 53fbd460044f867da97833ac8eda911880786008 Mon Sep 17 00:00:00 2001 From: Fabio Faria Date: Thu, 11 May 2023 18:17:23 -0300 Subject: [PATCH] =?UTF-8?q?mudan=C3=A7a=20do=20menu=20de=20retorno=20banc?= =?UTF-8?q?=C3=A1rio=20fixes=20bug#AL-2674?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 7 +++---- .../service/impl/ImportacaoRetornoBancarioServiceImpl.java | 4 ++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 59fc0a0e7..f75634526 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.3.2 + 1.3.3 rj-releases @@ -12,8 +12,8 @@ - ISO-8859-1 - ISO-8859-1 + UTF-8 + UTF-8 @@ -25,7 +25,6 @@ 1.8 1.8 - ISO-8859-1 diff --git a/src/com/rjconsultores/ventaboletos/service/impl/ImportacaoRetornoBancarioServiceImpl.java b/src/com/rjconsultores/ventaboletos/service/impl/ImportacaoRetornoBancarioServiceImpl.java index ac4503974..68cc6734b 100644 --- a/src/com/rjconsultores/ventaboletos/service/impl/ImportacaoRetornoBancarioServiceImpl.java +++ b/src/com/rjconsultores/ventaboletos/service/impl/ImportacaoRetornoBancarioServiceImpl.java @@ -96,6 +96,10 @@ public class ImportacaoRetornoBancarioServiceImpl implements ImportacaoRetornoBa resultado.append("Ocorreu um erro ao processar o arquivo enviado"); log.error(ioe); return resultado.toString(); + } catch (RuntimeException re) { + resultado.append( re.getMessage() ); + log.error(re); + return resultado.toString(); } catch (Exception e) { resultado.append("Ocorreu um erro ao processar o arquivo enviado"); log.error(e);