mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-25 23:48:29 +00:00
13 lines
168 B
C++
13 lines
168 B
C++
//
|
|
// Created by anonymus-raccoon on 3/26/20.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <bits/exception.h>
|
|
|
|
namespace ComSquare
|
|
{
|
|
class DebuggableError : public std::exception {};
|
|
}
|