20 lines
340 B
Swift
20 lines
340 B
Swift
//
|
|
// StORMErrors.swift
|
|
// StORM
|
|
//
|
|
// Created by Jonathan Guthrie on 2016-09-26.
|
|
//
|
|
//
|
|
|
|
public enum StORMError: Error {
|
|
case database // "No Database Specified"
|
|
case error(String) // "Error"
|
|
case noError // "No Error"
|
|
case notImplemented // "Not Implemented"
|
|
case noRecordFound // no record
|
|
|
|
init(){
|
|
self = .noError
|
|
}
|
|
}
|