Exceptions.hh

Go to the documentation of this file.
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   /// Generic runtime Rivet error.
00011   class Error : public std::runtime_error {
00012   public:
00013     Error(const std::string& what) : std::runtime_error(what) {}
00014   };
00015 
00016 
00017   /// Also typedef Exception, so that it's there.
00018   typedef Error Exception;
00019 
00020 
00021   /// Error for e.g. use of invalid bin ranges.
00022   class RangeError : public Error {
00023   public:
00024     RangeError(const std::string& what) : Error(what) {}
00025   };
00026 
00027 
00028   /// @todo Clarify where this might arise!
00029   class LogicError : public Error {
00030   public:
00031     LogicError(const std::string& what) : Error(what) {}
00032   };
00033 
00034   /// @brief Errors relating to event/bin weights
00035   /// Arises in computing statistical quantities because e.g. the bin
00036   /// weight is zero or negative.
00037   class WeightError : public Error {
00038   public:
00039     WeightError(const std::string& what) : Error(what) {}
00040   };
00041 
00042 }
00043 
00044 #endif