nim-ethers/ethers/wallet/error.nim

8 lines
148 B
Nim
Raw Normal View History

2023-07-04 08:40:22 +00:00
import ../basics
type
WalletError* = object of EthersError
func raiseWalletError*(message: string) =
raise newException(WalletError, message)