Last active
October 11, 2018 04:14
-
-
Save vialyx/f81001099973a50a9fe3d67793f8618b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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