// SPDX-License-Identifier: MIT // Copyright © 2018 WireGuard LLC. All Rights Reserved. import Cocoa class ErrorPresenter: ErrorPresenterProtocol { static func showErrorAlert(title: String, message: String, from sourceVC: AnyObject?, onPresented: (() -> Void)?, onDismissal: (() -> Void)?) { let alert = NSAlert() alert.messageText = title alert.informativeText = message onPresented?() alert.runModal() onDismissal?() } }