yuzu/src/shader_recompiler/exception.h

67 lines
1.6 KiB
C++
Raw Normal View History

2021-01-09 07:30:07 +01:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <stdexcept>
2021-05-27 22:51:00 +02:00
#include <string>
#include <string_view>
2021-01-09 07:30:07 +01:00
#include <utility>
#include <fmt/format.h>
namespace Shader {
2021-05-27 22:51:00 +02:00
class Exception : public std::exception {
public:
explicit Exception(std::string message) noexcept : err_message{std::move(message)} {}
2021-05-27 22:51:00 +02:00
const char* what() const noexcept override {
return err_message.c_str();
2021-05-27 22:51:00 +02:00
}
void Prepend(std::string_view prepend) {
err_message.insert(0, prepend);
2021-05-27 22:51:00 +02:00
}
void Append(std::string_view append) {
err_message += append;
2021-05-27 22:51:00 +02:00
}
private:
std::string err_message;
2021-05-27 22:51:00 +02:00
};
class LogicError : public Exception {
2021-01-09 07:30:07 +01:00
public:
template <typename... Args>
LogicError(const char* message, Args&&... args)
2021-05-27 22:51:00 +02:00
: Exception{fmt::format(message, std::forward<Args>(args)...)} {}
2021-01-09 07:30:07 +01:00
};
2021-05-27 22:51:00 +02:00
class RuntimeError : public Exception {
2021-01-09 07:30:07 +01:00
public:
template <typename... Args>
RuntimeError(const char* message, Args&&... args)
2021-05-27 22:51:00 +02:00
: Exception{fmt::format(message, std::forward<Args>(args)...)} {}
2021-01-09 07:30:07 +01:00
};
2021-05-27 22:51:00 +02:00
class NotImplementedException : public Exception {
2021-01-09 07:30:07 +01:00
public:
template <typename... Args>
NotImplementedException(const char* message, Args&&... args)
2021-05-27 22:51:00 +02:00
: Exception{fmt::format(message, std::forward<Args>(args)...)} {
Append(" is not implemented");
}
2021-01-09 07:30:07 +01:00
};
2021-05-27 22:51:00 +02:00
class InvalidArgument : public Exception {
2021-01-09 07:30:07 +01:00
public:
template <typename... Args>
InvalidArgument(const char* message, Args&&... args)
2021-05-27 22:51:00 +02:00
: Exception{fmt::format(message, std::forward<Args>(args)...)} {}
2021-01-09 07:30:07 +01:00
};
} // namespace Shader