Main Page | Namespace List | Class List | File List | Namespace Members | Class Members | File Members

encodeexception.hpp

Go to the documentation of this file.
00001 00008 #ifndef ENCODEEXCEPTION_HPP_INCLUDED 00009 #define ENCODEEXCEPTION_HPP_INCLUDED 00010 00011 #include <stdexcept> 00012 #include <string> 00013 00018 class NotEnoughBits 00019 : public std::runtime_error 00020 { 00021 public: 00022 NotEnoughBits(unsigned bitwidth) 00023 : std::runtime_error("Not enough bits to encode value") 00024 , bitwidth_(bitwidth) 00025 { 00026 } 00027 unsigned bitwidth_; 00028 }; 00029 00030 00031 #endif // defined ENCODEEXCEPTION_HPP_INCLUDED 00032

Generated on Fri Nov 26 15:31:02 2004 for DVB Codec by doxygen 1.3.7