Update doc for QgsMapServiceException

This commit is contained in:
Blottiere Paul 2018-07-09 12:46:58 +01:00
parent 237054738a
commit a7dfd6e1aa
2 changed files with 8 additions and 0 deletions

View File

@ -29,7 +29,11 @@ The most important codes are:
#include "qgsmapserviceexception.h"
%End
public:
QgsMapServiceException( const QString &code, const QString &message );
%Docstring
Constructor.
%End
};
/************************************************************************

View File

@ -40,6 +40,10 @@
class SERVER_EXPORT QgsMapServiceException : public QgsOgcServiceException
{
public:
/**
* Constructor.
*/
QgsMapServiceException( const QString &code, const QString &message )
: QgsOgcServiceException( code, message )
{}