summaryrefslogtreecommitdiff
path: root/src/exceptions.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-08 10:35:32 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-08 10:35:32 +0000
commit8803a19c6901ab3c3ff85c964343f08458e0824e (patch)
treec6e1703bf3fb40cfe2ee5bd9674b5184e2bd4484 /src/exceptions.cc
parent83591a4390db550a7d1495b9699c62315e2d7710 (diff)
Remove compose.hpp dependency from header.
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r--src/exceptions.cc33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
new file mode 100644
index 00000000..6a32a33f
--- /dev/null
+++ b/src/exceptions.cc
@@ -0,0 +1,33 @@
+/*
+ Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "exceptions.h"
+#include "compose.hpp"
+
+using std::string;
+using namespace libdcp;
+
+FileError::FileError (std::string const & message, boost::filesystem::path filename, int number)
+ : _message (String::compose ("%1 (error %2) (%3)", message, filename.string(), number))
+ , _filename (filename)
+ , _number (number)
+{
+
+}
+