passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
15 lines (13 loc) • 428 B
JavaScript
/**
* Bad response
*
* @copyright (c) 2019 Passbolt SA
* @licence GNU Affero General Public License http://www.gnu.org/licenses/agpl-3.0.en.html
*/
class PassboltBadResponseError extends Error {
constructor() {
super("An internal error occurred. The server response could not be parsed. Please contact your administrator.");
this.name = "PassboltBadResponseError";
}
}
export default PassboltBadResponseError;