Change MunkiError to a class so it can be subclassed

This commit is contained in:
Greg Neagle
2024-08-14 08:18:39 -07:00
parent 49481055b3
commit 3a5f40bcbe
+1 -1
View File
@@ -20,7 +20,7 @@
import Foundation
struct MunkiError: Error, CustomStringConvertible {
class MunkiError: Error, CustomStringConvertible {
// General error class for errors
public internal(set) var message: String