15 lines
240 B
Swift
15 lines
240 B
Swift
//
|
|
// KillSwitchError.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Juraldinio on 7/12/20.
|
|
// Copyright © 2020 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum KillSwitchError: Error {
|
|
case emptyClient
|
|
case installHelper
|
|
}
|