mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-02-05 12:03:25 +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)
|