RetryException Clase

  • 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

Excepción de reintento cuando la tarea Reintento no se puede ejecutar correctamente.

Resumen del constructor

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

Un reintentoexcepción con la descripción y la lista de excepciones.

RetryException(Throwable cause)

Error de reintento causado por un error inesperado.

Resumen del método

Modificador y tipo Método y descripción
java.util.List<java.lang.Throwable> getExceptions()

Lista de excepciones detectadas al ejecutar la tarea Reintentar.

Métodos heredados 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 heredados 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

Detalles del constructor

RetryException

public RetryException(String message, List withExceptions)

RetryException con descripción y lista de excepciones.

Parámetros:

message - Mensaje.
withExceptions - Lista de excepciones recopiladas por Retry.

RetryException

public RetryException(Throwable cause)

Error de reintento causado por un error inesperado.

Parámetros:

cause - Excepción detectada.

Detalles del método

getExceptions

public List getExceptions()

Lista de excepciones detectadas al ejecutar la tarea Reintentar.

Devoluciones:

Lista de excepciones.

Se aplica a