From eff22b26324ecc2ecac781258988db03d22d38ea Mon Sep 17 00:00:00 2001 From: Alessandro Pasotti Date: Mon, 20 Jan 2020 18:12:26 +0100 Subject: [PATCH] Make it ///cond private --- src/server/qgis_mapserver.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/server/qgis_mapserver.cpp b/src/server/qgis_mapserver.cpp index 8abde6600fbb..6bde6120a537 100644 --- a/src/server/qgis_mapserver.cpp +++ b/src/server/qgis_mapserver.cpp @@ -43,16 +43,27 @@ on the command line. #include #include +///@cond PRIVATE + +/** + * The HttpException class represents an HTTP parsing exception. + */ class HttpException: public std::exception { public: + /** + * Constructs an HttpException with the given \a message + */ HttpException( const QString &message ) : mMessage( message ) { } + /** + * Returns the exception message. + */ QString message( ) { return mMessage; @@ -357,3 +368,4 @@ int main( int argc, char *argv[] ) return 0; } +/// @endcond