00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _cvc3__command_line_exception_h_
00024 #define _cvc3__command_line_exception_h_
00025
00026 #include "exception.h"
00027
00028 namespace CVC3 {
00029 class CLException: public Exception {
00030 public:
00031
00032 CLException() { }
00033 CLException(const std::string& msg): Exception(msg) { }
00034 CLException(const char* msg): Exception(msg) { }
00035
00036 virtual ~CLException() { }
00037
00038 virtual std::string toString() const {
00039 return "Error while processing a command line option:\n " + d_msg;
00040 }
00041 };
00042
00043 }
00044
00045 #endif