827572eada
- Rename project to CopiumEngine
15 lines
203 B
C++
15 lines
203 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Copium
|
|
{
|
|
class VulkanException : public std::runtime_error
|
|
{
|
|
public:
|
|
VulkanException(const std::string& str)
|
|
: runtime_error{str.c_str()}
|
|
{}
|
|
};
|
|
}
|