mirror of
https://github.com/zoriya/ComSquare.git
synced 2025-12-21 14:45:10 +00:00
16 lines
271 B
C++
16 lines
271 B
C++
//
|
|
// Created by anonymus-raccoon on 3/26/20.
|
|
//
|
|
|
|
#ifndef COMSQUARE_DEBUGGABLEERROR_HPP
|
|
#define COMSQUARE_DEBUGGABLEERROR_HPP
|
|
|
|
#include <bits/exception.h>
|
|
|
|
namespace ComSquare
|
|
{
|
|
class DebuggableError : public std::exception {};
|
|
}
|
|
|
|
#endif //COMSQUARE_DEBUGGABLEERROR_HPP
|