scsl/include/sctest/Exceptions.h

71 lines
2.0 KiB
C
Raw Normal View History

///
/// \file include/sctest/Exceptions.h
/// \author K. Isom <kyle@imap.cc>
/// \date 2023-10-10
/// \brief Custom exceptions for use in SCSL used in writing test programs.
///
/// Copyright 2023 K. Isom <kyle@imap.cc>
///
/// Permission to use, copy, modify, and/or distribute this software for
/// any purpose with or without fee is hereby granted, provided that
/// the above copyright notice and this permission notice appear in all /// copies.
///
/// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
/// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
/// WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
/// AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
/// DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
/// OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
/// TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
/// PERFORMANCE OF THIS SOFTWARE.
///
2023-10-19 07:37:56 +00:00
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-19 07:37:56 +00:00
namespace sctest {
2023-10-10 13:02:21 +00:00
/// \brief Exception reserved for unsupported platforms.
2023-10-11 00:24:29 +00:00
///
/// 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-19 07:37:56 +00:00
} // namespace sctest
2023-10-10 13:02:21 +00:00
2023-10-19 07:37:56 +00:00
#endif // SCSL_EXCEPTIONS_H