mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 02:05:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			318 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			318 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaWeb.Models;
 | |
| 
 | |
| public class SyntaxError {
 | |
|     public string Message { get; private set; }
 | |
|     public int? Line { get; set; }
 | |
|     public int? Column { get; set; }
 | |
| 
 | |
|     public SyntaxError(int? line, int? column, string message) {
 | |
|         Line = line;
 | |
|         Column = column;
 | |
|         Message = message;
 | |
|     }
 | |
| } | 
