8 lines
475 B
Kotlin
8 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)
|