Skip to content

Commit 411ee19

Browse files
committedJul 13, 2018
Update doc for QgsWcsServiceException
1 parent 57b23dc commit 411ee19

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎src/server/services/wcs/qgswcsserviceexception.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,18 @@ namespace QgsWcs
3333
class QgsServiceException : public QgsOgcServiceException
3434
{
3535
public:
36+
37+
/**
38+
* Constructor
39+
*/
3640
QgsServiceException( const QString &code, const QString &message,
3741
int responseCode = 200 )
3842
: QgsOgcServiceException( code, message, QString(), responseCode, QStringLiteral( "1.2.0" ) )
3943
{}
4044

45+
/**
46+
* Constructor
47+
*/
4148
QgsServiceException( const QString &code, const QString &message, const QString &locator,
4249
int responseCode = 200 )
4350
: QgsOgcServiceException( code, message, locator, responseCode, QStringLiteral( "1.2.0" ) )
@@ -54,6 +61,10 @@ namespace QgsWcs
5461
class QgsSecurityAccessException: public QgsServiceException
5562
{
5663
public:
64+
65+
/**
66+
* Constructor
67+
*/
5768
QgsSecurityAccessException( const QString &message, const QString &locator = QString() )
5869
: QgsServiceException( QStringLiteral( "Security" ), message, locator, 403 )
5970
{}
@@ -67,6 +78,10 @@ namespace QgsWcs
6778
class QgsRequestNotWellFormedException: public QgsServiceException
6879
{
6980
public:
81+
82+
/**
83+
* Constructor
84+
*/
7085
QgsRequestNotWellFormedException( const QString &message, const QString &locator = QString() )
7186
: QgsServiceException( QStringLiteral( "RequestNotWellFormed" ), message, locator, 400 )
7287
{}

0 commit comments

Comments
 (0)
Please sign in to comment.