Sha256: 49cb1839a27ca434bccc23d40ac6bcd6e57650f6ca01f6a002f8efa0d2a8ea83
Contents?: true
Size: 461 Bytes
Versions: 16
Compression:
Stored size: 461 Bytes
Contents
//go:build go1.18 // +build go1.18 // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package errorinfo // NonRetriable represents a non-transient error. This works in // conjunction with the retry policy, indicating that the error condition // is idempotent, so no retries will be attempted. // Use errors.As() to access this interface in the error chain. type NonRetriable interface { error NonRetriable() }
Version data entries
16 entries across 16 versions & 1 rubygems