10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
|
|
/**
|
|
* This class handles some errors related to external authentication, where message must be displayed to end user.
|
|
*/
|
|
class ExternalAuthenticationError extends Error {}
|
|
|
|
export {
|
|
ExternalAuthenticationError
|
|
}
|