/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * IllegalTypeException.cpp * * Created on: Jun 25, 2010 * Author: crueger */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Helpers/MemDebug.hpp" #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"; }