scsl/Exceptions.h

52 lines
1.1 KiB
C
Raw Normal View History

2023-10-10 13:02:21 +00:00
//
// Created by kyle on 2023-10-10.
//
2023-10-15 01:38:01 +00:00
#ifndef SCSL_EXCEPTIONS_H
#define SCSL_EXCEPTIONS_H
2023-10-10 13:02:21 +00:00
#include <exception>
#include <string>
2023-10-15 01:38:01 +00:00
namespace scsl {
2023-10-10 13:02:21 +00:00
2023-10-11 00:24:29 +00:00
/// NotImplemented is an exception reserved for unsupported platforms.
///
/// It is used to mark functionality included for compatibility, and useful for
/// debugging.
2023-10-10 13:02:21 +00:00
class NotImplemented : public std::exception {
public:
2023-10-11 00:24:29 +00:00
/// NotImplemented exceptions are constructed with a platform name.
2023-10-10 13:02:21 +00:00
explicit NotImplemented(const char *pl) : platform((char *)pl) {}
2023-10-11 00:24:29 +00:00
/// what returns a message naming the platform.
2023-10-11 01:57:43 +00:00
const char *what() const throw() {
2023-10-10 13:02:21 +00:00
return this->platform;
}
private:
char *platform;
};
/// AssertionFailed indicates that some invariant didn't hold.
class AssertionFailed : public std::exception {
public:
/// AssertionFailed is constructed with a message describing what
/// failed.
explicit AssertionFailed(std::string message);
/// what returns a message describing the exception.
2023-10-11 01:57:43 +00:00
const char *what() const throw();
2023-10-10 13:02:21 +00:00
private:
std::string msg;
};
2023-10-15 01:38:01 +00:00
} // namespace scsl
2023-10-10 13:02:21 +00:00
2023-10-15 01:38:01 +00:00
#endif //SCSL_EXCEPTIONS_H