Skip to content

Instantly share code, notes, and snippets.

@vialyx
Last active October 11, 2018 04:14
Show Gist options
  • Save vialyx/f81001099973a50a9fe3d67793f8618b to your computer and use it in GitHub Desktop.
Save vialyx/f81001099973a50a9fe3d67793f8618b to your computer and use it in GitHub Desktop.
enum MachingError: Error {
case NotEnoughtCharacters(count: Int)
}
enum CollectionError: Error {
case Empty
}
throw MachingError.NotEnoughtCharacters(count: 1)
throw CollectionError.Empty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment