diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-09-12 10:40:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-09-12 10:40:01 +0100 |
| commit | da99d514dea384babf98d5a47cca3ab864e9a4e4 (patch) | |
| tree | 017875a1b48cde894edd447210f7f20835d5d020 | |
| parent | 571f180e4da23a79277b09bbbcbfb6b176a895df (diff) | |
Fix error.
| -rw-r--r-- | src/smpte_subtitle_asset.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc index 128729d8..3b30a0c7 100644 --- a/src/smpte_subtitle_asset.cc +++ b/src/smpte_subtitle_asset.cc @@ -103,7 +103,10 @@ SMPTESubtitleAsset::SMPTESubtitleAsset (boost::filesystem::path file) } catch (cxml::Error& e) { boost::throw_exception ( DCPReadError ( - String::compose ("MXF failed with %1, XML failed with %2", file, static_cast<int> (r), e.what ()) + String::compose ( + "Failed to read subtitle file %1; MXF failed with %2, XML failed with %3", + file, static_cast<int> (r), e.what () + ) ) ); } |
