8 lines
148 B
Nim
Raw Normal View History

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