lemon/list_graph.h
changeset 2153 b1fb96088350
parent 2132 783b1d583be3
child 2160 abd867cf8a9c
equal deleted inserted replaced
35:076a75256c05 36:7739df248dbd
   506     class Snapshot {
   506     class Snapshot {
   507     public:
   507     public:
   508       
   508       
   509       class UnsupportedOperation : public LogicError {
   509       class UnsupportedOperation : public LogicError {
   510       public:
   510       public:
   511 	virtual const char* exceptionName() const {
   511 	virtual const char* what() const throw() {
   512 	  return "lemon::ListGraph::Snapshot::UnsupportedOperation";
   512 	  return "lemon::ListGraph::Snapshot::UnsupportedOperation";
   513 	}
   513 	}
   514       };
   514       };
   515             
   515             
   516 
   516 
   839 
   839 
   840   class ListBpUGraphBase {
   840   class ListBpUGraphBase {
   841   public:
   841   public:
   842 
   842 
   843     class NodeSetError : public LogicError {
   843     class NodeSetError : public LogicError {
   844       virtual const char* exceptionName() const { 
   844       virtual const char* what() const throw() { 
   845 	return "lemon::ListBpUGraph::NodeSetError";
   845 	return "lemon::ListBpUGraph::NodeSetError";
   846       }
   846       }
   847     };
   847     };
   848 
   848 
   849   protected:
   849   protected: