mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 18:18:11 +00:00
9 lines
475 B
Kotlin
9 lines
475 B
Kotlin
package org.amnezia.vpn.protocol
|
|
|
|
sealed class ProtocolException(message: String? = null, cause: Throwable? = null) : Exception(message, cause)
|
|
|
|
class BadConfigException(message: String? = null, cause: Throwable? = null) : ProtocolException(message, cause)
|
|
|
|
class VpnStartException(message: String? = null, cause: Throwable? = null) : ProtocolException(message, cause)
|
|
class VpnException(message: String? = null, cause: Throwable? = null) : ProtocolException(message, cause)
|