We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad704c5 commit 2b1b56eCopy full SHA for 2b1b56e
GRDB/Core/RowDecodingError.swift
@@ -23,9 +23,8 @@ enum RowKey: Hashable, Sendable {
23
case prefetchKey(String)
24
}
25
26
-/// A decoding error
27
-@usableFromInline
28
-struct RowDecodingError: Error {
+/// A decoding error thrown when decoding a database row.
+public struct RowDecodingError: Error {
29
enum Impl {
30
case keyNotFound(RowKey, Context)
31
case valueMismatch(Any.Type, Context)
@@ -177,8 +176,7 @@ struct RowDecodingContext {
177
176
178
179
extension RowDecodingError: CustomStringConvertible {
180
- @usableFromInline
181
- var description: String {
+ public var description: String {
182
let context = self.context
183
let row = context.row
184
var chunks: [String] = []
0 commit comments