C# Class Spring.Retry.Retry.Backoff.BackOffInterruptedException

Exception class signifiying that an attempt to back off using a IBackOffPolicy was interrupted, most likely by an ThreadInterruptedException during a call to Thread.Sleep(int).
Inheritance: RetryException
Afficher le fichier Open project: spring-projects/spring-net-retry

Méthodes publiques

Méthode Description
BackOffInterruptedException ( string msg ) : System

Initializes a new instance of the BackOffInterruptedException class.

BackOffInterruptedException ( string msg, Exception cause ) : System

Initializes a new instance of the BackOffInterruptedException class.

Method Details

BackOffInterruptedException() public méthode

Initializes a new instance of the BackOffInterruptedException class.
public BackOffInterruptedException ( string msg ) : System
msg string The msg.
Résultat System

BackOffInterruptedException() public méthode

Initializes a new instance of the BackOffInterruptedException class.
public BackOffInterruptedException ( string msg, Exception cause ) : System
msg string The msg.
cause System.Exception The cause.
Résultat System