Main Page | Namespace List | Class Hierarchy | Compound List | File List | Namespace Members | Compound Members | File Members | Related Pages

NoSuchElementException.hpp

Go to the documentation of this file.
00001 #ifndef NoSuchElementException_HPP
00002 #define NoSuchElementException_HPP
00003 
00004 #include <string>
00005 
00006 using std::string;
00007 
00008   class NoSuchElementException{
00009 
00010     private:
00011 
00012       string what_;
00013 
00014     public:
00015 
00016       NoSuchElementException(string what):what_(what){}
00017 
00018       const string & what() const{return what_; }
00019 
00020   };
00021 
00022 #endif//NoSuchElementException_HPP

Generated on Mon Sep 6 16:12:48 2004 by doxygen 1.3.3