diff options
Diffstat (limited to 'libpqpp/pq-error.h')
-rw-r--r-- | libpqpp/pq-error.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libpqpp/pq-error.h b/libpqpp/pq-error.h index 08d86b9..9c14e2d 100644 --- a/libpqpp/pq-error.h +++ b/libpqpp/pq-error.h @@ -2,20 +2,19 @@ #define PQ_ERROR_H #include <error.h> -#include <libpq-fe.h> #include <exception.h> +#include <libpq-fe.h> namespace PQ { class Error : public AdHoc::Exception<DB::Error> { - public: - explicit Error(const PGconn *); + public: + explicit Error(const PGconn *); - std::string message() const noexcept override; + std::string message() const noexcept override; - private: - std::string msg; + private: + std::string msg; }; } #endif - |