/* * IllegalTypeException.cpp * * Created on: Jun 25, 2010 * Author: crueger */ #include "IllegalTypeException.hpp" using namespace std; IllegalTypeException::IllegalTypeException(string _file, int _line) : CustomException(_file,_line) {} IllegalTypeException::~IllegalTypeException() throw () {} const char* IllegalTypeException::what() const throw(){ return "Illegal type in cast"; }