blip  0.1
ResourceExhaustedException.hpp
Go to the documentation of this file.
1 #ifndef __blip_ResourceExhaustedException_hpp
2 #define __blip_ResourceExhaustedException_hpp
3 
4 #include <blip/Blip.hpp>
5 
6 #include <commonc++/Exception.h++>
7 
8 namespace blip {
9 
15 class ResourceExhaustedException : public ccxx::Exception
16 {
17  public:
18 
20  ResourceExhaustedException(const ccxx::String& message = ccxx::String::null);
21 
23  virtual ~ResourceExhaustedException() throw();
24 };
25 
26 } // namespace blip
27 
28 #endif // __blip_ResourceExhaustedException_hpp
ResourceExhaustedException(const ccxx::String &message=ccxx::String::null)
Construct a new ResourceExhaustedException with an optional message.
Definition: ResourceExhaustedException.cpp:8
WAV file format details at: https://ccrma.stanford.edu/courses/422/projects/WaveFormat/.
Definition: AccelerometerSensorEvent.cpp:3
An Exception indicating that all instances of a resource have been exhausted.
Definition: ResourceExhaustedException.hpp:15
virtual ~ResourceExhaustedException()
Destructor.
Definition: ResourceExhaustedException.cpp:14