#include "exception.h" using namespace LAMMPS_NS; LAMMPSexception::LAMMPSexception(const char *msg) : exception() { message = msg; } const char *LAMMPSexception::what() const throw() { return message; }