MOOS 0.2375
/home/toby/moos-ivp/MOOS-2375-Oct0611/Tools/Graphical/libAlogTools/alogTools/VersionException.h
Go to the documentation of this file.
00001 #ifndef VERSIONEXCEPTION_H
00002 #define VERSIONEXCEPTION_H
00003 
00004 #include <stdexcept>
00005 #include <string>
00006 
00007 class VersionException : public std::runtime_error {
00008   VersionException& operator = (const VersionException &other);
00009 
00010 public:
00011   VersionException(const std::string &msg = "");
00012   VersionException(const VersionException &other);
00013 
00014 protected:
00015 
00016 };
00017 
00018 #endif // VERSIONEXCEPTION_H
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines