1
0
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:
masoud bh
2015-09-24 02:39:26 +03:30
parent 24f3f43457
commit 55b8c3ee48
90 changed files with 118 additions and 129 deletions

View 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_;
}
}