UNPKG

onesignal-web-sdk

Version:

Web push notifications from OneSignal.

15 lines (12 loc) 582 B
import OneSignalError from "./OneSignalError"; export default class PushNotSupportedError extends OneSignalError { constructor() { super('Push notifications are not supported.'); /** * Important! Required to make sure the correct error type is detected during instanceof checks. * Same applies to all derived classes. * https://github.com/Microsoft/TypeScript-wiki/blob/master/Breaking-Changes.md#extending-built-ins-like-error-array-and-map-may-no-longer-work */ Object.setPrototypeOf(this, PushNotSupportedError.prototype); } }