Skip to content

Commit 576003f

Browse files
committed
Structify errors
1 parent 9ed9826 commit 576003f

File tree

2 files changed

+28
-7
lines changed

2 files changed

+28
-7
lines changed

Sources/ExtrasBase64/Base32.swift

+11-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,17 @@ public enum Base32 {
3030
public static let allowNullCharacters = DecodingOptions(rawValue: UInt(1 << 0))
3131
}
3232

33-
public enum DecodingError: Swift.Error, Equatable {
34-
case invalidCharacter
33+
public struct DecodingError: Swift.Error, Equatable {
34+
enum _Internal {
35+
case invalidCharacter
36+
}
37+
38+
fileprivate let value: _Internal
39+
init(_ value: _Internal) {
40+
self.value = value
41+
}
42+
43+
public static var invalidCharacter: Self { .init(.invalidCharacter) }
3544
}
3645

3746
/// Base32 Encode a buffer to an array of bytes

Sources/ExtrasBase64/Base64.swift

+17-5
Original file line numberDiff line numberDiff line change
@@ -334,11 +334,23 @@ extension Base64 {
334334
public static let omitPaddingCharacter = DecodingOptions(rawValue: UInt(1 << 1))
335335
}
336336

337-
public enum DecodingError: Error, Equatable {
338-
case invalidLength
339-
case invalidCharacter(UInt8)
340-
case unexpectedPaddingCharacter
341-
case unexpectedEnd
337+
public struct DecodingError: Error, Equatable {
338+
fileprivate enum _Internal: Error, Equatable {
339+
case invalidLength
340+
case invalidCharacter(UInt8)
341+
case unexpectedPaddingCharacter
342+
case unexpectedEnd
343+
}
344+
345+
fileprivate let value: _Internal
346+
fileprivate init(_ value: _Internal) {
347+
self.value = value
348+
}
349+
350+
public static var invalidLength: Self { .init(.invalidLength) }
351+
public static func invalidCharacter(_ character: UInt8) -> Self { .init(.invalidCharacter(character)) }
352+
public static var unexpectedPaddingCharacter: Self { .init(.unexpectedPaddingCharacter) }
353+
public static var unexpectedEnd: Self { .init(.unexpectedEnd) }
342354
}
343355

344356
@inlinable

0 commit comments

Comments
 (0)