You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// - SeeAlso: [RFC8030 Generic Event Delivery Using HTTP Push](https://datatracker.ietf.org/doc/html/rfc8030)
15
+
/// - SeeAlso: [RFC8292 Voluntary Application Server Identification (VAPID) for Web Push](https://datatracker.ietf.org/doc/html/rfc8292)
16
+
/// - SeeAlso: [Sending web push notifications in web apps and browsers — Review responses for push notification errors](https://developer.apple.com/documentation/usernotifications/sending-web-push-notifications-in-web-apps-and-browsers#Review-responses-for-push-notification-errors)
17
+
publicstructHTTPError:LocalizedError{
18
+
letresponse:HTTPClientResponse
19
+
20
+
init(response:HTTPClientResponse){
21
+
self.response = response
22
+
}
23
+
24
+
publicvarerrorDescription:String?{
25
+
"A \(response.status) HTTP error was encountered: \(response)."
0 commit comments