Skip to content

Commit

Permalink
Make it ///cond private
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jan 20, 2020
1 parent b98c417 commit eff22b2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/server/qgis_mapserver.cpp
Expand Up @@ -43,16 +43,27 @@ on the command line.
#include <string>
#include <chrono>

///@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;
Expand Down Expand Up @@ -357,3 +368,4 @@ int main( int argc, char *argv[] )
return 0;
}

/// @endcond

0 comments on commit eff22b2

Please sign in to comment.