// SPDX-License-Identifier: AGPL-1.0 pragma solidity 0.8.9; interface ISweatTokenTest { //-------------------------------------------------------------------------- // Errors /// @notice Maximum of Sweat tokens have been reached error SweatTokenTest_MaxSweatSupplyReached(); /// @notice Minting amount + current supply exceeds max Sweat tokens error SweatTokenTest_MintAmountExceedsMaxSupply(); /// @notice Sweat token is non-transferable error SweatTokenTest_SweatIsNonTransferable(); }