Files
Bomberman/lib/Ray/sources/Exceptions/RayError.cpp
2021-05-23 17:43:34 +02:00

24 lines
463 B
C++

/*
** EPITECH PROJECT, 2021
** Bomberman
** File description:
** RayError
*/
#include "RayError.hpp"
RAY::Exception::RayError::RayError(const std::string &expectionMessage):
runtime_error(expectionMessage)
{
}
RAY::Exception::NotSupportedError::NotSupportedError(const std::string &expectionMessage):
RayError(expectionMessage)
{
}
RAY::Exception::NotCompatibleError::NotCompatibleError(const std::string &expectionMessage):
RayError(expectionMessage)
{
}