diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-08-30 22:28:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-08-30 22:28:06 +0100 |
| commit | e4e038154f0bad3b91a57130c7a88d9fba6a488c (patch) | |
| tree | 52c0972e5de8f7e33162c8985237331807d14db6 /src/exceptions.h | |
| parent | f7180df03b0e11a697e31eeced2f1817cad14680 (diff) | |
Allow DCP reading to continue even with empty <Path> nodes in ASSETMAP.
Diffstat (limited to 'src/exceptions.h')
| -rw-r--r-- | src/exceptions.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/exceptions.h b/src/exceptions.h index 65271c16..1e9bd2d7 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -228,6 +228,12 @@ public: MissingSubtitleImageError (std::string id); }; +class EmptyAssetPathError : public DCPReadError +{ +public: + EmptyAssetPathError (std::string id); +}; + } #endif |
