Files
BloomPatched/src/Exceptions/DebugServerInterrupted.hpp

13 lines
201 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include "Exception.hpp"
namespace Bloom::Exceptions
{
class DebugServerInterrupted: public Exception
{
public:
explicit DebugServerInterrupted() = default;
};
}