9 lines
200 B
Kotlin
9 lines
200 B
Kotlin
package org.ccoin.exceptions
|
|
|
|
class WalletNotFoundException(
|
|
val address: String
|
|
) : CCoinException(
|
|
message = "Wallet with address '$address' not found",
|
|
errorCode = "WALLET_NOT_FOUND"
|
|
)
|