diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-08-30 22:28:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-11-11 21:24:29 +0100 |
| commit | aa8b4d4348394ea01e97f4c83e55fdbca3aa6cdb (patch) | |
| tree | 832566f25edd3e55fbb0d1cbb59a777a9772b358 /src/exceptions.h | |
| parent | cba9d74bec5722db9079ecb8b5d4fc4bcb757a54 (diff) | |
Allow DCP reading to continue even with empty <Path> nodes in ASSETMAP.v1.6.11
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 |
