/home/martin/workspace/OpenStreetNav/src/osmdb/PropertiesSelectionException.h
Go to the documentation of this file.
00001 /*
00002  * FillException.h
00003  *
00004  *  Created on: Jan 3, 2012
00005  *      Author: martin
00006  */
00007 
00008 #ifndef PROPERTIES_SELECTION_EXCEPTION_H_
00009 #define PROPERTIES_SELECTION_EXCEPTION_H_
00010 
00011 #include <exception>
00012 #include <string>
00013 
00014 namespace osmdb
00015 {
00016 
00017 class PropertiesSelectionException : public std::exception
00018 {
00019 public:
00020     PropertiesSelectionException(std::string const& problem);
00021     virtual ~PropertiesSelectionException() throw ();
00022     const char* what() const throw();
00023 private:
00024     std::string msg;
00025 };
00026 
00027 } /* namespace osmdb */
00028 #endif /* PROPERTIES_SELECTION_EXCEPTION_H_ */
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines