t7x/src/client/updater/update_cancelled.hpp

15 lines
195 B
C++
Raw Normal View History

2023-02-18 13:15:47 -05:00
#pragma once
#include <stdexcept>
namespace updater
{
struct update_cancelled : public std::runtime_error
{
update_cancelled()
: std::runtime_error("Update was cancelled")
{
}
};
}