UNPKG

@wristband/nextjs-auth

Version:

SDK for integrating your NextJS application with Wristband. Handles user authentication and token management.

9 lines (8 loc) 206 B
export class FetchError extends Error { constructor(response, body) { super('Fetch Error'); this.name = 'FetchError'; this.response = response; this.body = body; } }