don't fail if file can not be open
This commit is contained in:
parent
ba5c156c45
commit
01f4984804
1 changed files with 4 additions and 0 deletions
|
@ -306,6 +306,10 @@ namespace mapnik
|
||||||
{
|
{
|
||||||
throw config_error( ex.what() );
|
throw config_error( ex.what() );
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
//throw config_error("exception...");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (child.first != "<xmlattr>" &&
|
else if (child.first != "<xmlattr>" &&
|
||||||
child.first != "<xmlcomment>")
|
child.first != "<xmlcomment>")
|
||||||
|
|
Loading…
Reference in a new issue