aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-01-27 03:39:23 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:46 +0100
commit90a6675a8eda8f77d504275b982c469b8e2ca2ce (patch)
tree7e415cedc12d185abdfa897c31fe2c971d0b756c /src/base/song.hpp
parent0079e977109bfa1a4226bc399fb7888d28292b3c (diff)
downloadusdx-90a6675a8eda8f77d504275b982c469b8e2ca2ce.tar.gz
usdx-90a6675a8eda8f77d504275b982c469b8e2ca2ce.tar.xz
usdx-90a6675a8eda8f77d504275b982c469b8e2ca2ce.zip
renamed MissingSongTagException to MissingTagException and added tag parameter
Diffstat (limited to 'src/base/song.hpp')
-rw-r--r--src/base/song.hpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/src/base/song.hpp b/src/base/song.hpp
index 6009cfa9..d831a91e 100644
--- a/src/base/song.hpp
+++ b/src/base/song.hpp
@@ -37,11 +37,22 @@
namespace usdx
{
- class MissingSongTagException : public BaseException
+ class MissingTagException : public BaseException
{
+ private:
+ /**
+ * TODO: Maybe refactor this to separate sub-classes.
+ */
+ const std::string tag;
+
public:
- MissingSongTagException(std::string message) : BaseException(message) {};
- ~MissingSongTagException () throw () {};
+ MissingTagException(const std::string tag,
+ const std::string message) :
+ BaseException(message), tag(tag) {};
+
+ ~MissingTagException () throw () {};
+
+ virtual const std::string& get_tag() const { return tag; };
};
class Song