/** @throws SystemException */
 private void carregarSistema() throws SystemException {
   sistema =
       sistemaService.consultar(
           ConstantesAutorizadorCustomizacao.CD_SISTEMA_AUTORIZADOR_CUSTOMIZACAO);
   if (sistema == null || !sistema.isAtivo()) {
     throw new SystemException(AutorizadorCustomizacaoErros.ERRO_SISTEMA_INATIVO);
   }
 }