func toCRTType()

in Packages/ClientRuntime/Sources/Retries/RetryError.swift [17:24]


    func toCRTType() -> CRTRetryError {
        switch self {
        case .transient: return .transient
        case .throttling: return .throttling
        case .serverError: return .serverError
        case .clientError: return .clientError
        }
    }