previously they'd get handled as (...)
catch(Exception &e) {
L<<Logger::Error<<"Exception in webserver: "<<e.reason<<endl;
}
+ catch(PDNSException &e) {
+ L<<Logger::Error<<"Exception in webserver: "<<e.reason<<endl;
+ }
catch(std::exception &e) {
L<<Logger::Error<<"STL Exception in webserver: "<<e.what()<<endl;
}
catch(Exception &e) {
L<<Logger::Error<<"Fatal error in main webserver thread: "<<e.reason<<endl;
}
+ catch(PDNSException &e) {
+ L<<Logger::Error<<"Exception in main webserver thread: "<<e.reason<<endl;
+ }
catch(std::exception &e) {
L<<Logger::Error<<"STL Exception in main webserver thread: "<<e.what()<<endl;
}