You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
change pe_bliss parent directory from /drivers to /tools
This commit is contained in:
19
tools/pe_bliss/pe_exception.cpp
Normal file
19
tools/pe_bliss/pe_exception.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "pe_exception.h"
|
||||
|
||||
namespace pe_bliss
|
||||
{
|
||||
//PE exception class constructors
|
||||
pe_exception::pe_exception(const char* text, exception_id id)
|
||||
:std::runtime_error(text), id_(id)
|
||||
{}
|
||||
|
||||
pe_exception::pe_exception(const std::string& text, exception_id id)
|
||||
:std::runtime_error(text), id_(id)
|
||||
{}
|
||||
|
||||
//Returns exception ID
|
||||
pe_exception::exception_id pe_exception::get_id() const
|
||||
{
|
||||
return id_;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user