8 lines
173 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) {.raises: [WalletError].}=
2023-07-04 10:40:22 +02:00
raise newException(WalletError, message)