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