@@ -33,11 +33,18 @@ namespace QgsWcs
33
33
class QgsServiceException : public QgsOgcServiceException
34
34
{
35
35
public:
36
+
37
+ /* *
38
+ * Constructor
39
+ */
36
40
QgsServiceException ( const QString &code, const QString &message,
37
41
int responseCode = 200 )
38
42
: QgsOgcServiceException( code, message, QString(), responseCode, QStringLiteral( " 1.2.0" ) )
39
43
{}
40
44
45
+ /* *
46
+ * Constructor
47
+ */
41
48
QgsServiceException ( const QString &code, const QString &message, const QString &locator,
42
49
int responseCode = 200 )
43
50
: QgsOgcServiceException( code, message, locator, responseCode, QStringLiteral( " 1.2.0" ) )
@@ -54,6 +61,10 @@ namespace QgsWcs
54
61
class QgsSecurityAccessException : public QgsServiceException
55
62
{
56
63
public:
64
+
65
+ /* *
66
+ * Constructor
67
+ */
57
68
QgsSecurityAccessException ( const QString &message, const QString &locator = QString() )
58
69
: QgsServiceException( QStringLiteral( " Security" ), message, locator, 403 )
59
70
{}
@@ -67,6 +78,10 @@ namespace QgsWcs
67
78
class QgsRequestNotWellFormedException : public QgsServiceException
68
79
{
69
80
public:
81
+
82
+ /* *
83
+ * Constructor
84
+ */
70
85
QgsRequestNotWellFormedException ( const QString &message, const QString &locator = QString() )
71
86
: QgsServiceException( QStringLiteral( " RequestNotWellFormed" ), message, locator, 400 )
72
87
{}
0 commit comments