RetryException Classe

  • java.lang.Object
    • java.lang.Throwable
      • java.lang.Exception
        • java.lang.RuntimeException
          • com.microsoft.bot.connector.authentication.RetryException

public class RetryException
extends java.lang.RuntimeException

Tente novamente a exceção quando a tarefa Repetir falhar ao ser executada com êxito.

Resumo do Construtor

Construtor Description
RetryException(String message, List<Throwable> withExceptions)

Uma Nova tentativaExceção com descrição e lista de exceções.

RetryException(Throwable cause)

Uma falha de repetição causada por uma falha inesperada.

Resumo do método

Modificador e tipo Método e descrição
java.util.List<java.lang.Throwable> getExceptions()

Uma lista de exceções encontradas ao executar a tarefa Repetir.

Métodos herdados de java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Métodos herdados de java.lang.Throwable

java.lang.Throwable.addSuppressed java.lang.Throwable.fillInStackTrace java.lang.Throwable.getCause java.lang.Throwable.getLocalizedMessage java.lang.Throwable.getMessage java.lang.Throwable.getStackTrace java.lang.Throwable.getSuppressed java.lang.Throwable.initCause java.lang.Throwable.printStackTrace java.lang.Throwable.printStackTrace java.lang.Throwable.printStackTrace java.lang.Throwable.setStackTrace java.lang.Throwable.toString

Detalhes do construtor

RetryException

public RetryException(String message, List withExceptions)

Uma RetryException com descrição e lista de exceções.

Parâmetros:

message - A mensagem.
withExceptions - A lista de exceções coletadas por Retry.

RetryException

public RetryException(Throwable cause)

Uma falha de repetição causada por uma falha inesperada.

Parâmetros:

cause - A exceção capturada.

Detalhes do método

getExceptions

public List getExceptions()

Uma lista de exceções encontradas ao executar a tarefa Repetir.

Retornos:

A Lista de exceções.

Aplica-se a