swapable
Version:
Swapable: Automated Liquidity Pools
24 lines (23 loc) • 788 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.FailureInvalidCommand = void 0;
// internal dependencies
const FailureCommandExecution_1 = require("./FailureCommandExecution");
/**
* @class FailureInvalidCommand
* @package Swapable
* @subpackage Errors
* @since v1.0.0
* @description The command is not a digital asset command.
*/
class FailureInvalidCommand extends FailureCommandExecution_1.FailureCommandExecution {
}
exports.FailureInvalidCommand = FailureInvalidCommand;