blob: 6c03463ef862a3d286df7b1d232212a8ca37408d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include <stdexcept>
namespace zen::bench::util {
void EmptyStandByList();
struct elevation_required_exception : public std::runtime_error
{
explicit elevation_required_exception(const std::string& What) : std::runtime_error{What} {}
};
} // namespace zen::bench::util
|