Skip to content

Instantly share code, notes, and snippets.

@minwoolee
Created November 19, 2024 03:47
Show Gist options
  • Select an option

  • Save minwoolee/9e555573089875e6b3a093daefcb1cba to your computer and use it in GitHub Desktop.

Select an option

Save minwoolee/9e555573089875e6b3a093daefcb1cba to your computer and use it in GitHub Desktop.
// allows throw "some error"
import Foundation
extension String: @retroactive Error {}
extension String: @retroactive LocalizedError {
public var errorDescription: String? { return self }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment