UInt128Errors
public enum UInt128Errors: Error
An ErrorType
for UInt128
data types. It includes cases
for the 4 possible errors that can occur during string
conversion, and 1 impossible error to satisfy a default
case in a switch statement.
-
Invalid character supplied in input string.
Declaration
Swift
case invalidStringCharacter
-
Invalid radix given for conversion.
Declaration
Swift
case invalidRadix
-
Cannot convert an empty string into a UInt128 value.
Declaration
Swift
case emptyString
-
The unsigned integer representation of string exceeds 128 bits.
Declaration
Swift
case stringInputOverflow