passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
17 lines (14 loc) • 368 B
JavaScript
/**
* Application error
*
* @copyright (c) 2019 Passbolt SA
* @licence GNU Affero General Public License http://www.gnu.org/licenses/agpl-3.0.en.html
*/
class PassboltApiFetchError extends Error {
constructor(message, data) {
super(message);
this.name = "PassboltApiFetchError";
this.data = data || {};
}
}
export default PassboltApiFetchError;