Fire Core  8.0.0.alpha
GIS framework per tutti gli usi
 Tutto Classi Namespace Funzioni Variabili Ridefinizioni di tipo (typedef) Tipi enumerati (enum) Valori del tipo enumerato Friend
GeometryException.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_GEAR_EXCEPTION_GEOMETRYEXCEPTION_HPP_INCLUDED
5 #define FIRE_GEAR_EXCEPTION_GEOMETRYEXCEPTION_HPP_INCLUDED
6 
7 #include <string>
8 
9 #include "fire/export.hpp"
10 
11 #include "fire/exception/Exception.hpp"
12 
19 namespace fire {
26 namespace gear {
33 namespace exception {
40 class FIRE_ENGINE_DLL GeometryException : public fire::exception::Exception {
41  public:
43  explicit GeometryException(const std::string& message);
44  GeometryException(const std::string& name, const std::string& message);
45  virtual ~GeometryException() throw();
46 };
47 } // namespace exception
48 } // namespace gear
49 } // namespace fire
50 
51 #endif
Classe per la gestione di un'eccezione generica.
Definition: Exception.hpp:26
Definition: GeometryException.hpp:40