UNPKG

@azure/msal-browser

Version:
14 lines (11 loc) 396 B
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { CustomAuthError } from "./CustomAuthError.js"; export class HttpError extends CustomAuthError { constructor(error: string, message: string, correlationId?: string) { super(error, message, correlationId); Object.setPrototypeOf(this, HttpError.prototype); } }