Changeset 2323
- Timestamp:
- 12/23/11 10:50:40 (17 months ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/rec_channel_rec.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/rec_channel_rec.cc
r1997 r2323 590 590 catch(std::exception& e) 591 591 { 592 L<<Logger::Error<<"reloading ACLs failed (Exception: "<<e.what()<<")"<<endl; 592 593 return e.what() + string("\n"); 593 594 } 595 catch(AhuException& ae) 596 { 597 L<<Logger::Error<<"reloading ACLs failed (AhuException: "<<ae.reason<<")"<<endl; 598 return ae.reason + string("\n"); 599 } 594 600 return "ok\n"; 595 601 }