mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
170 B
C++
11 lines
170 B
C++
#include <string>
|
|
#include "Utilities/StrFmt.h"
|
|
|
|
namespace cereal
|
|
{
|
|
[[noreturn]] void throw_exception(const std::string& err)
|
|
{
|
|
fmt::throw_exception("%s", err);
|
|
}
|
|
}
|