17 lines
312 B
Swift
17 lines
312 B
Swift
public enum CatchPolicy {
|
|
case allErrorsExceptCancellation
|
|
case allErrors
|
|
}
|
|
|
|
func PMKUnhandledErrorHandler(_ error: Error)
|
|
{}
|
|
|
|
import class Dispatch.DispatchQueue
|
|
|
|
func __PMKDefaultDispatchQueue() -> DispatchQueue {
|
|
return DispatchQueue.main
|
|
}
|
|
|
|
func __PMKSetDefaultDispatchQueue(_: DispatchQueue)
|
|
{}
|