We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7c24a2 commit 486cf59Copy full SHA for 486cf59
src/providers/grass/qgsgrass.cpp
@@ -391,6 +391,10 @@ int QgsGrass::error_routine( char *msg, int fatal )
391
392
int QgsGrass::error_routine( const char *msg, int fatal )
393
{
394
+ // Unfortunately the exceptions thrown here can only be caught if GRASS libraries are compiled
395
+ // with -fexception option on Linux (works on Windows)
396
+ // GRASS developers are reluctant to add -fexception by default
397
+ // https://trac.osgeo.org/grass/ticket/869
398
QgsDebugMsg( QString( "error_routine (fatal = %1): %2" ).arg( fatal ).arg( msg ) );
399
400
error_message = msg;
0 commit comments