00001 #ifndef RIVET_EXCEPTIONS_HH
00002 #define RIVET_EXCEPTIONS_HH
00003
00004 #include <string>
00005 #include <exception>
00006 #include <stdexcept>
00007
00008 namespace Rivet {
00009
00010
00011 class Error : public std::runtime_error {
00012 public:
00013 Error(const std::string& what) : std::runtime_error(what) {}
00014 };
00015
00016
00017
00018 typedef Error Exception;
00019
00020
00021
00022 class RangeError : public Error {
00023 public:
00024 RangeError(const std::string& what) : Error(what) {}
00025 };
00026
00027
00028
00029 class LogicError : public Error {
00030 public:
00031 LogicError(const std::string& what) : Error(what) {}
00032 };
00033
00034
00035
00036
00037 class WeightError : public Error {
00038 public:
00039 WeightError(const std::string& what) : Error(what) {}
00040 };
00041
00042 }
00043
00044 #endif