mirror of
https://github.com/codex-storage/nim-ethers.git
synced 2025-01-27 03:35:22 +00:00
8 lines
148 B
Nim
8 lines
148 B
Nim
import ../basics
|
|
|
|
type
|
|
WalletError* = object of EthersError
|
|
|
|
func raiseWalletError*(message: string) =
|
|
raise newException(WalletError, message)
|