mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-02 13:43:06 +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)
|