Revert "Show project path in server parsing error (revert before release)"

This reverts commit 368223ad0a0995b6d3ab0d55cd5e723557887ad5.
This commit is contained in:
Nyall Dawson 2016-02-23 14:06:31 +11:00
parent c8dffafddf
commit 02499d2e94

View File

@ -539,7 +539,7 @@ QPair<QByteArray, QByteArray> QgsServer::handleRequest( const QString& queryStri
);
if ( !p )
{
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", QString( "Error reading the project file: %1" ).arg( configFilePath ) ) );
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", "Error reading the project file" ) );
}
else
{
@ -565,7 +565,7 @@ QPair<QByteArray, QByteArray> QgsServer::handleRequest( const QString& queryStri
);
if ( !p )
{
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", QString( "Error reading the project file: %1" ).arg( configFilePath ) ) );
theRequestHandler->setServiceException( QgsMapServiceException( "Project file error", "Error reading the project file" ) );
}
else
{