mirror of
https://github.com/audacity/linuxdeploy.git
synced 2026-04-22 05:29:12 -05:00
Abort if library is missing
This commit is contained in:
@@ -16,6 +16,12 @@ namespace linuxdeploy {
|
||||
explicit ElfFileParseError(const std::string& msg) : std::runtime_error(msg) {}
|
||||
};
|
||||
|
||||
// thrown by traceDynamicDependencies() if a dependency is missing
|
||||
class DependencyNotFoundError : public std::runtime_error {
|
||||
public:
|
||||
explicit DependencyNotFoundError(const std::string& msg) : std::runtime_error(msg) {}
|
||||
};
|
||||
|
||||
class ElfFile {
|
||||
private:
|
||||
class PrivateData;
|
||||
|
||||
Reference in New Issue
Block a user