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
SqlException.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 #ifndef FIRE_EXCEPTION_SQLEXCEPTION_H
4 #define FIRE_EXCEPTION_SQLEXCEPTION_H
5 
6 #include <fire/source/exception/QueryException.hpp>
7 
8 #include <string>
9 
10 namespace fire {
11 namespace source {
12 namespace exception {
13 
14 class FIRE_GIS_DLL SqlException : public QueryException {
15  public:
16  SqlException();
17  explicit SqlException(std::string const & msg);
18  virtual ~SqlException() throw();
19 };
20 
21 } // namespace exception
22 } // namespace source
23 } // namespace fire
24 
25 #endif // FIRE_EXCEPTION_SQLEXCEPTION_H
Definition: SqlException.hpp:14
Definition: QueryException.hpp:16