71730a73ef
* Set category always if different * rename org * Fix video format sorting * fix format filtering * Update AVAudioSession+setCategoryIfNotSet.swift * upgrade all dependencies * Also run dependabot for JS codebase * Update MediaPage.tsx * Use typescript 4.2.4 * Also run TS in check-all * Downgrade typescript to 4.2.3 * f * recreate lockfiles * docs: Revert package.json changes * revert all package.json changes * Update Podfile.lock * bump all dependencies, pin typescript to 4.2.4 * Downgrade react-native-navigation for now * upgrade to later snapshot * Update yarn.lock * remove yeet
28 lines
652 B
Swift
28 lines
652 B
Swift
//
|
|
// EnumParserError.swift
|
|
// Cuvent
|
|
//
|
|
// Created by Marc Rousavy on 18.12.20.
|
|
// Copyright © 2020 mrousavy. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
/**
|
|
An error raised when the given descriptor (TypeScript string union type) cannot be parsed and converted to a Swift enum.
|
|
*/
|
|
enum EnumParserError: Error {
|
|
/**
|
|
Raised when the descriptor is not supported on the current OS.
|
|
*/
|
|
case unsupportedOS(supportedOnOS: String)
|
|
/**
|
|
Raised when the descriptor does not match any of the possible values.
|
|
*/
|
|
case invalidValue
|
|
/**
|
|
Raised when no descriptor for the given enum is available.
|
|
*/
|
|
case noDescriptorAvailable
|
|
}
|