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
IoException.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_GEAR_IO_EXCEPTION_IOEXCEPTION_HPP_INCLUDED
5 #define FIRE_GEAR_IO_EXCEPTION_IOEXCEPTION_HPP_INCLUDED
6 
7 #include <stdexcept>
8 #include <exception>
9 
10 #include "fire/exception/Exception.hpp"
11 
18 namespace fire {
25 namespace gear {
32 namespace io {
39 namespace exception {
46 class FIRE_ENGINE_DLL IoException : public fire::exception::Exception {
47  public:
48  IoException();
49  explicit IoException(const std::string& message);
50  IoException(const std::string& name, const std::string& message);
51 };
52 } // namespace exception
53 } // namespace io
54 } // namespace gear
55 } // namespace fire
56 
57 #endif
Definition: IoException.hpp:46
Classe per la gestione di un'eccezione generica.
Definition: Exception.hpp:26