summaryrefslogtreecommitdiff
path: root/src/game/SaveLoadException.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-04-14 13:49:26 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-04-14 13:49:26 (GMT)
commit20b3be68a7c4a931ba3d4d9d49c162f3418e1b9f (patch)
tree97b4e48204a1faae4e0cb4bf15f2f440afc53f84 /src/game/SaveLoadException.h
parent216b5de60e5592e003eb5ba062b3c41ce8f5f341 (diff)
downloadpowder-20b3be68a7c4a931ba3d4d9d49c162f3418e1b9f.zip
powder-20b3be68a7c4a931ba3d4d9d49c162f3418e1b9f.tar.gz
Remove some unnecessary files.
Diffstat (limited to 'src/game/SaveLoadException.h')
-rw-r--r--src/game/SaveLoadException.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/game/SaveLoadException.h b/src/game/SaveLoadException.h
deleted file mode 100644
index fea2ad5..0000000
--- a/src/game/SaveLoadException.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * SaveLoadException.h
- *
- * Created on: Mar 29, 2012
- * Author: Simon
- */
-
-#ifndef SAVELOADEXCEPTION_H_
-#define SAVELOADEXCEPTION_H_
-
-#include <string>
-#include <exception>
-using namespace std;
-
-struct SaveLoadException: public exception {
- string message;
-public:
- SaveLoadException(string message_): message(message_) {}
- const char * what() const throw()
- {
- return message.c_str();
- }
- ~SaveLoadException() throw() {};
-};
-
-#endif /* SAVELOADEXCEPTION_H_ */