# HG changeset patch # User deba # Date 1153734688 0 # Node ID 6831fa0076887284f0f36ba6a69d22520127a312 # Parent a21d1e88d389130d712c1a374783bd495f9f2439 make public what() in NodeSetError diff -r a21d1e88d389 -r 6831fa007688 lemon/full_graph.h --- a/lemon/full_graph.h Mon Jul 24 09:50:40 2006 +0000 +++ b/lemon/full_graph.h Mon Jul 24 09:51:28 2006 +0000 @@ -499,6 +499,7 @@ public: class NodeSetError : public LogicError { + public: virtual const char* what() const throw() { return "lemon::FullBpUGraph::NodeSetError"; } diff -r a21d1e88d389 -r 6831fa007688 lemon/smart_graph.h --- a/lemon/smart_graph.h Mon Jul 24 09:50:40 2006 +0000 +++ b/lemon/smart_graph.h Mon Jul 24 09:51:28 2006 +0000 @@ -431,6 +431,7 @@ public: class NodeSetError : public LogicError { + public: virtual const char* what() const throw() { return "lemon::SmartBpUGraph::NodeSetError"; }