mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 22:30:08 +01:00
11 lines
165 B
C++
11 lines
165 B
C++
|
|
#include <string>
|
|||
|
|
#include "Utilities/Thread.h"
|
|||
|
|
|
|||
|
|
namespace cereal
|
|||
|
|
{
|
|||
|
|
[[noreturn]] void throw_exception(const std::string& err)
|
|||
|
|
{
|
|||
|
|
report_fatal_error(err);
|
|||
|
|
}
|
|||
|
|
}
|