mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
19 lines
405 B
Plaintext
19 lines
405 B
Plaintext
|
|
||
|
/**Exception class for WMS service exceptions. The most important codes are:
|
||
|
"InvalidFormat"
|
||
|
"Invalid CRS"
|
||
|
"LayerNotDefined" / "StyleNotDefined"
|
||
|
"OperationNotSupported"*/
|
||
|
|
||
|
class QgsMapServiceException
|
||
|
{
|
||
|
%TypeHeaderCode
|
||
|
#include <qgsmapserviceexception.h>
|
||
|
%End
|
||
|
public:
|
||
|
QgsMapServiceException( const QString& code, const QString& message );
|
||
|
QString code() const;
|
||
|
QString message() const;
|
||
|
|
||
|
};
|