Files
ccoin/server/src/main/kotlin/org/ccoin/exceptions/WalletNotFoundException.kt
2025-12-17 09:29:42 -05:00

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"
)