diff --git a/src/com/rjconsultores/ventaboletos/service/impl/EstacionServiceImpl.java b/src/com/rjconsultores/ventaboletos/service/impl/EstacionServiceImpl.java index 5504f4f7d..28129c012 100644 --- a/src/com/rjconsultores/ventaboletos/service/impl/EstacionServiceImpl.java +++ b/src/com/rjconsultores/ventaboletos/service/impl/EstacionServiceImpl.java @@ -112,7 +112,7 @@ public class EstacionServiceImpl implements EstacionService { private void validarEstoqueBorrar(Estacion estacion) throws BusinessException { if (!ApplicationProperties.getInstance().generarRotinaFolios()) { if (estacionDAO.temEstoque(estacion.getPuntoVenta(), estacion)) { - throw new BusinessException("estacionServiceImpl.msg.hayStock"); + throw new BusinessException("estacionServiceImpl.msg.hayStock.borrar"); } } }