Updated on 2026-08-14
This commit is contained in:
parent
b804a4e7a0
commit
cc66f03895
1 changed files with 3 additions and 1 deletions
|
|
@ -6,7 +6,9 @@ import com.tangem.common.module.ModuleException
|
|||
/**
|
||||
[REDACTED_AUTHOR]
|
||||
*/
|
||||
sealed class AddCustomTokenException(override val message: String) : Throwable(message), ModuleException {
|
||||
sealed class DomainException(override val message: String) : Throwable(message), ModuleException
|
||||
|
||||
sealed class AddCustomTokenException(message: String) : DomainException(message) {
|
||||
|
||||
data class SelectTokeNetworkException(val networkId: String) : AddCustomTokenException(
|
||||
"Unknown network [$networkId] should not be included in the network selection dialog."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue