13 lines
201 B
C++
13 lines
201 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Exception.hpp"
|
||
|
|
namespace Bloom::Exceptions
|
||
|
|
{
|
||
|
|
class DebugServerInterrupted: public Exception
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
explicit DebugServerInterrupted() = default;
|
||
|
|
|
||
|
|
};
|
||
|
|
}
|