Sha256: 92a54be520ed9b84a1cfc21434462240efb086683b3a9caa2e46ba6c28a76676
Contents?: true
Size: 532 Bytes
Versions: 16
Compression:
Stored size: 532 Bytes
Contents
package retry import "fmt" // MaxAttemptsError provides the error when the maximum number of attempts have // been exceeded. type MaxAttemptsError struct { Attempt int Err error } func (e *MaxAttemptsError) Error() string { return fmt.Sprintf("exceeded maximum number of attempts, %d, %v", e.Attempt, e.Err) } // Unwrap returns the nested error causing the max attempts error. Provides the // implementation for errors.Is and errors.As to unwrap nested errors. func (e *MaxAttemptsError) Unwrap() error { return e.Err }
Version data entries
16 entries across 16 versions & 1 rubygems