/usr/include/bulletml/bulletmlerror.h is in libbulletml-dev 0.0.6-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #ifndef BULLETMLERROR_H_
#define BULLETMLERROR_H_
#include "bulletmlcommon.h"
#include <stdexcept>
/// �������ɂ���������Ə[��������Ƃ˂�
class BulletMLError : public std::runtime_error {
public:
DECLSPEC BulletMLError(const std::string& msg)
: std::runtime_error(msg) {}
DECLSPEC static void doAssert(const char* str) {
throw BulletMLError(str);
}
DECLSPEC static void doAssert(const std::string& str) {
throw BulletMLError(str);
}
DECLSPEC static void doAssert(bool t, const char* str) {
if (!t) throw BulletMLError(str);
}
DECLSPEC static void doAssert(bool t, const std::string& str) {
if (!t) throw BulletMLError(str);
}
};
#endif // ! BULLETMLERROR_H_
|