mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-05-18 16:09:34 +00:00
8 lines
173 B
Nim
8 lines
173 B
Nim
import ../basics
|
|
|
|
type
|
|
WalletError* = object of EthersError
|
|
|
|
func raiseWalletError*(message: string) {.raises: [WalletError].}=
|
|
raise newException(WalletError, message)
|