Files
ComSquare/sources/Exceptions/DebuggableError.hpp

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