1 // Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
2 // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3 
4 #ifndef GAME_SAVE_ERROR_H
5 #define GAME_SAVE_ERROR_H
6 
7 struct SavedGameCorruptException {};
8 struct SavedGameWrongVersionException {};
9 struct CouldNotOpenFileException {};
10 struct CouldNotWriteToFileException {};
11 
12 #endif
13