Files
divkit/client/ios/Core/BasePublic/InvalidArgumentError.swift
T
2023-03-28 12:17:21 +03:00

18 lines
329 B
Swift

// Copyright 2019 Yandex LLC. All rights reserved.
import Foundation
public struct InvalidArgumentError: Error {
public let name: String
public let value: Any
#if DEBUG
public let callStack = Thread.callStackSymbols
#endif
public init(name: String, value: Any) {
self.name = name
self.value = value
}
}