macdependency/MachO/machoexception.h

16 lines
271 B
C
Raw Normal View History

#ifndef MACHOEXCEPTION_H
#define MACHOEXCEPTION_H
#include "macho_global.h"
2009-09-29 15:01:48 +00:00
class EXPORT MachOException
{
public:
MachOException(const std::string&);
const std::string& getCause() { return cause; }
private:
const std::string cause;
};
#endif // MACHOEXCEPTION_H