From 7e6d98ed7e40f9e458fefd4e225b1d48a9a0ee99 Mon Sep 17 00:00:00 2001 From: tanner0101 Date: Mon, 16 Jul 2018 20:19:26 -0400 Subject: [PATCH] add missing doc blocks in sqlite error --- Sources/SQLite/Utilities/SQLiteError.swift | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Sources/SQLite/Utilities/SQLiteError.swift b/Sources/SQLite/Utilities/SQLiteError.swift index a4e37e2..f852062 100644 --- a/Sources/SQLite/Utilities/SQLiteError.swift +++ b/Sources/SQLite/Utilities/SQLiteError.swift @@ -8,9 +8,17 @@ import Debugging /// Errors that can be thrown while using SQLite public struct SQLiteError: Debuggable { let problem: Problem + + /// See `Debuggable`. public let reason: String + + /// See `Debuggable`. public var sourceLocation: SourceLocation? + + /// See `Debuggable`. public var stackTrace: [String] + + /// See `Debuggable`. public var identifier: String { return problem.rawValue }