Express colour conversions as chromaticities and adjust so that
[libdcp.git] / src / exceptions.cc
index b31974d47c3cddb4023684ceb3bb3c72290e33b6..4045021c953680b1f896e6814432be1c449a83fa 100644 (file)
@@ -74,3 +74,10 @@ NotEncryptedError::NotEncryptedError (string const & what)
 {
 
 }
+
+
+ProgrammingError::ProgrammingError (string file, int line)
+       : StringError (String::compose ("Programming error at %1:%2", file, line))
+{
+
+}