OperationException
open class OperationException : Exception
An exception thrown when an operation cannot be completed.
-
Initializes an Exception instance.
Declaration
Swift
public init(error: OperationError, message: String?, stackTrace: [String]?)
Parameters
error
The error causing the exception.
message
A human-readable message explaining the error.
stackTrace
The stack trace at the time the exception was thrown. Defaults to
Thread.callStackSymbols
.