summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN/WrappingError.swift
blob: ff217d0dae3e3c192d1c17073b672f7ca1a153f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  WrappingError.swift
//  MullvadVPN
//
//  Created by pronebird on 23/09/2022.
//  Copyright © 2022 Mullvad VPN AB. All rights reserved.
//

import Foundation

/// Protocol describing errors that may contain underlying errors.
protocol WrappingError: Error {
    var underlyingError: Error? { get }
}