Add OpenVpn over Cloak module
This commit is contained in:
parent
51d4aea9e2
commit
eaa209bc3a
7 changed files with 110 additions and 16 deletions
|
|
@ -3,7 +3,7 @@ package org.amnezia.vpn.protocol
|
|||
sealed class ProtocolException(message: String? = null, cause: Throwable? = null) : Exception(message, cause)
|
||||
|
||||
class LoadLibraryException(message: String? = null, cause: Throwable? = null) : ProtocolException(message, cause)
|
||||
class VpnNotAuthorizedException(message: String? = null, cause: Throwable? = null) : ProtocolException(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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue