Files
ComSquare/sources/Exceptions/DebuggableError.hpp
2021-02-04 14:22:39 +01:00

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 {};
}