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
RasterException.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_SOURCE_EXCEPTION_RASTEREXCEPTION_HPP_INCLUDED
5 #define FIRE_SOURCE_EXCEPTION_RASTEREXCEPTION_HPP_INCLUDED
6 
7 #include <string>
8 
9 #include "fire/gis/export.hpp"
10 
11 #include "fire/exception/Exception.hpp"
12 
19 namespace fire {
26 namespace source {
33 namespace exception {
40 class FIRE_GIS_DLL RasterException : public fire::exception::Exception {
41  public:
43  explicit RasterException(const std::string& message);
44  RasterException(const std::string& name, const std::string& message);
45  virtual ~RasterException() throw();
46 };
47 
48 } // namespace exception
49 } // namespace source
50 } // namespace fire
51 
52 #endif
Classe per la gestione di un'eccezione generica.
Definition: Exception.hpp:26
Definition: RasterException.hpp:40