public VistaFuncionWrapper(
     long vista, EnumFormatoGuardar formato, EnumTipoInforme tipo, String select)
     throws ExcepcionAplicacion {
   _id = vista;
   _nombre = Global.PREFIJO_STRING_ID_RECURSO + vista;
   _formato = formato != null ? formato : EnumFormatoGuardar.INFORME;
   _tipo = tipo != null ? tipo : EnumTipoInforme.DETALLE;
   if (_formato.equals(EnumFormatoGuardar.ARCHIVO) && _tipo.equals(EnumTipoInforme.GRAFICO)) {
     throw new ExcepcionAplicacion(Bitacora.getTextoMensaje(CBM.GRAFICO_NO_DISPONIBLE));
   }
   _select = StringUtils.trimToNull(select);
   if (_select == null) {
     throw new ExcepcionAplicacion(Bitacora.getTextoMensaje(CBM.ERROR_COMANDO_SELECT));
   }
   init();
 }