| 
									
										
										
										
											2021-02-19 16:28:05 +01:00
										 |  |  | // | 
					
						
							|  |  |  | //  EnumParserError.swift | 
					
						
							| 
									
										
										
										
											2021-06-21 22:42:46 +02:00
										 |  |  | //  mrousavy | 
					
						
							| 
									
										
										
										
											2021-02-19 16:28:05 +01:00
										 |  |  | // | 
					
						
							|  |  |  | //  Created by Marc Rousavy on 18.12.20. | 
					
						
							| 
									
										
										
										
											2021-06-01 13:07:57 +02:00
										 |  |  | //  Copyright © 2020 mrousavy. All rights reserved. | 
					
						
							| 
									
										
										
										
											2021-02-19 16:28:05 +01:00
										 |  |  | // | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 does not match any of the possible values. | 
					
						
							|  |  |  |    */ | 
					
						
							|  |  |  |   case invalidValue | 
					
						
							|  |  |  | } |