swapable
Version:
Swapable: Automated Liquidity Pools
22 lines (21 loc) • 659 B
JavaScript
;
/**
* This file is part of Swapable shared under AGPL-3.0
* Copyright (C) 2021 Using Blockchain Ltd, Reg No.: 12658136, United Kingdom
*
* @package Swapable
* @author Grégory Saive for Using Blockchain Ltd <greg@ubc.digital>
* @license AGPL-3.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.FailureCommandExecution = void 0;
/**
* @class FailureCommandExecution
* @package Swapable
* @subpackage Errors
* @since v1.0.0
* @description An error happened during a command execution.
*/
class FailureCommandExecution extends Error {
}
exports.FailureCommandExecution = FailureCommandExecution;