@azure/msal-browser
Version:
Microsoft Authentication Library for js
14 lines (11 loc) • 406 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { CustomAuthError } from "./CustomAuthError.js";
export class ParsedUrlError extends CustomAuthError {
constructor(error: string, message: string, correlationId?: string) {
super(error, message, correlationId);
Object.setPrototypeOf(this, ParsedUrlError.prototype);
}
}