18#ifndef QGSWMSSERVICEEXCEPTION_H 
   19#define QGSWMSSERVICEEXCEPTION_H 
  112        const QString name = parameter.
name();
 
  119            message = QStringLiteral( 
"The %1 parameter is missing." ).arg( name );
 
  124            message = QStringLiteral( 
"The %1 parameter is invalid." ).arg( name );
 
  129            message = QStringLiteral( 
"The format '%1' from %2 is not supported." ).arg( parameter.
toString(), name );
 
  134            message = QStringLiteral( 
"The SRS is not valid." );
 
  139            message = QStringLiteral( 
"The CRS is not valid." );
 
  144            message = QStringLiteral( 
"The layer '%1' does not exist." ).arg( parameter.
toString() );
 
  149            message = QStringLiteral( 
"The layer '%1' is not queryable." ).arg( parameter.
toString() );
 
  154            message = QStringLiteral( 
"The point '%1' from '%2' is invalid." ).arg( parameter.
toString(), name );
 
  174        const QMetaEnum metaEnum( QMetaEnum::fromType<QgsServiceException::ExceptionCode>() );
 
  175        QString key = metaEnum.valueToKey( 
code );
 
  178        key.replace( QLatin1String( 
"OGC_" ), QString() );
 
  179        key.replace( QLatin1String( 
"QGIS_" ), QString() );
 
 
Exception base class for service exceptions.
 
QString locator() const
Returns the locator.
 
QString message() const
Returns the exception message.
 
QString code() const
Returns the exception code.
 
QString toString(bool defaultValue=false) const
Converts the parameter into a string.
 
Exception thrown in case of malformed request.
 
QgsBadRequestException(ExceptionCode code, const QgsWmsParameter ¶meter)
Constructor for QgsBadRequestException (HTTP error code 400).
 
QgsBadRequestException(ExceptionCode code, const QString &message)
Constructor for QgsBadRequestException (HTTP error code 400).
 
Exception thrown when data access violates access controls.
 
QgsSecurityException(const QString &message, const QString &locator=QString())
Constructor for QgsSecurityException (HTTP error code 403 with Security code name).
 
Exception class for WMS service exceptions.
 
QgsServiceException(ExceptionCode code, const QgsWmsParameter ¶meter, int responseCode)
Constructor for QgsServiceException (empty locator attribute).
 
QgsServiceException(const QString &code, const QString &message, int responseCode)
Constructor for QgsServiceException (empty locator attribute).
 
ExceptionCode
Exception codes as defined in OGC scpecifications for WMS 1.1.1 and WMS 1.3.0.
 
@ OGC_CurrentUpdateSequence
 
@ OGC_OperationNotSupported
 
@ OGC_InvalidUpdateSequence
 
@ OGC_InvalidDimensionValue
 
@ OGC_MissingDimensionValue
 
@ QGIS_InvalidParameterValue
 
@ QGIS_MissingParameterValue
 
QgsServiceException(ExceptionCode code, const QString &message, int responseCode)
Constructor for QgsServiceException (empty locator attribute).
 
WMS parameter received from the client.
 
QString name() const
Returns the name of the parameter.
 
Median cut implementation.