2024-05-23 09:42:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
2024-04-17 13:12:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class handles some errors related to external authentication, where message must be displayed to end user.
|
|
|
|
*/
|
|
|
|
class ExternalAuthenticationError extends Error {}
|
|
|
|
|
|
|
|
export {
|
|
|
|
ExternalAuthenticationError
|
|
|
|
}
|