Skip to content

Commit

Permalink
add missing doc blocks in sqlite error
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Jul 17, 2018
1 parent e115655 commit 7e6d98e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Sources/SQLite/Utilities/SQLiteError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 7e6d98e

Please sign in to comment.