equal
deleted
inserted
replaced
100 ///\ref Exception for the case when s=t. |
100 ///\ref Exception for the case when s=t. |
101 |
101 |
102 ///\ref Exception for the case when the source equals the target. |
102 ///\ref Exception for the case when the source equals the target. |
103 class InvalidArgument : public lemon::LogicError { |
103 class InvalidArgument : public lemon::LogicError { |
104 public: |
104 public: |
105 virtual const char* exceptionName() const { |
105 virtual const char* what() const throw() { |
106 return "lemon::Preflow::InvalidArgument"; |
106 return "lemon::Preflow::InvalidArgument"; |
107 } |
107 } |
108 }; |
108 }; |
109 |
109 |
110 |
110 |