Comment InvalidCharacter error

This commit is contained in:
Eryn Wells 2015-07-18 10:39:37 -07:00
parent 9f2106ed94
commit 56ae8cc5bb

View file

@ -13,6 +13,7 @@ class Rotor {
enum Error: ErrorType {
/** Thrown when the initializer is given an invalid series. */
case InvalidSeries
/** Thrown when encode() encounters a character that is not in the alphabet. */
case InvalidCharacter
}