#ifndef UTIL_DOT_H #define UTIL_DOT_H class Exception { public: virtual string what() const =0; virtual ~Exception() {} }; #endif