Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / src / mediawiki.authenticationPopup / AuthPopupError.js
blob21f71ec3170ab423859aee11b3d4eea0e1021890
1 class AuthPopupError extends Error {
2         constructor( message ) {
3                 super( message );
4                 this.name = this.constructor.name;
5         }
8 module.exports = AuthPopupError;