UNPKG

swapable

Version:
24 lines (23 loc) 816 B
"use strict"; /** * 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.FailureOperationForbidden = void 0; // internal dependencies const FailureCommandExecution_1 = require("./FailureCommandExecution"); /** * @class FailureOperationForbidden * @package Swapable * @subpackage Errors * @since v1.0.0 * @description The operation is forbidden for the executing actor. */ class FailureOperationForbidden extends FailureCommandExecution_1.FailureCommandExecution { } exports.FailureOperationForbidden = FailureOperationForbidden;