Updated on 2026-08-14

This commit is contained in:
Tangem 2022-05-03 15:39:37 +03:00
parent b804a4e7a0
commit cc66f03895

View file

@ -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."