mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 08:16:13 +03:00
12 lines
378 B
Swift
12 lines
378 B
Swift
enum GhosttyIntentError: Error, CustomLocalizedStringResourceConvertible {
|
|
case appUnavailable
|
|
case surfaceNotFound
|
|
|
|
var localizedStringResource: LocalizedStringResource {
|
|
switch self {
|
|
case .appUnavailable: return "The Ghostty app isn't properly initialized."
|
|
case .surfaceNotFound: return "The terminal no longer exists."
|
|
}
|
|
}
|
|
}
|