@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
33 lines • 1.48 kB
JavaScript
;
/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
* Adyen NodeJS API Library
* Copyright (c) 2026 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NexoSecurityException = void 0;
/** Exception thrown when an error occurs during Nexo message encryption or decryption. */
class NexoSecurityException extends Error {
constructor(message, cause) {
super(message);
this.name = "NexoSecurityException";
if (cause) {
this.stack = `${this.stack}\nCaused by: ${cause.stack}`;
}
}
}
exports.NexoSecurityException = NexoSecurityException;
//# sourceMappingURL=nexoSecurityException.js.map