/* * IllegalTypeException.hpp * * Created on: Jun 25, 2010 * Author: crueger */ #ifndef ILLEGALTYPEEXCEPTION_HPP_ #define ILLEGALTYPEEXCEPTION_HPP_ #include "Exceptions/CustomException.hpp" class IllegalTypeException : public CustomException { public: IllegalTypeException(std::string _file, int _line); virtual ~IllegalTypeException() throw (); virtual const char* what() const throw(); }; #endif /* ILLEGALTYPEEXCEPTION_HPP_ */