+// Something that gets thrown when ModuleNexus creation fails
+class ModuleNexusError : public CommonError {
+protected:
+ ModuleNexusError() {}
+
+public:
+ virtual OSStatus osStatus() const;
+ virtual int unixError() const;
+ static void throwMe() __attribute__((noreturn));
+};
+