mirror of
https://github.com/encounter/JSONAPI.git
synced 2026-03-30 11:18:38 -07:00
15 lines
312 B
Swift
15 lines
312 B
Swift
//
|
|
// EncodingError.swift
|
|
// JSONAPI
|
|
//
|
|
// Created by Mathew Polzin on 12/7/18.
|
|
//
|
|
|
|
public enum JSONAPIEncodingError: Swift.Error {
|
|
case typeMismatch(expected: String, found: String)
|
|
case illegalEncoding(String)
|
|
case illegalDecoding(String)
|
|
case missingOrMalformedMetadata
|
|
case missingOrMalformedLinks
|
|
}
|