t7x/src/client/updater/update_cancelled.hpp
2023-02-18 19:15:47 +01:00

15 lines
195 B
C++

#pragma once
#include <stdexcept>
namespace updater
{
struct update_cancelled : public std::runtime_error
{
update_cancelled()
: std::runtime_error("Update was cancelled")
{
}
};
}