public void LeerParametros(StreamReader lector) { try { LeerParametrosSalida(lector); } catch (Exception e) { throw new Exception(Mensajes.ErrorAlLeerParametroDeSalida(e)); } try { LeerParametrosEntrada(lector); } catch (Exception e) { throw new Exception(Mensajes.ErrorAlLeerParametroDeEntrada(e)); } }