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