swapable
Version:
Swapable: Automated Liquidity Pools
19 lines (18 loc) • 589 B
TypeScript
/**
* 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
*/
import { FailureCommandExecution } from './FailureCommandExecution';
/**
* @class FailureMissingArgument
* @package Swapable
* @subpackage Errors
* @since v1.0.0
* @description The execution context is missing a required argument.
*/
export declare class FailureMissingArgument extends FailureCommandExecution {
}