equal
deleted
inserted
replaced
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: |