Browse Source

[2435] Remove exceptions that are not thrown

When these methods are implemented, the author can look at the API
documentation of the base class as suggested.
Mukund Sivaraman 12 years ago
parent
commit
79b78d6538
1 changed files with 0 additions and 6 deletions
  1. 0 6
      src/lib/datasrc/rrset_collection_base.h

+ 0 - 6
src/lib/datasrc/rrset_collection_base.h

@@ -112,9 +112,6 @@ protected:
     /// \brief See \c isc::dns::RRsetCollectionBase::getBeginning() for
     /// documentation.
     ///
-    /// \throw isc::dns::RRsetCollectionError if using the iterator
-    /// results in some underlying datasrc error, or if \c disable() was
-    /// called.
     /// \throw isc::NotImplemented as it's not implemented currently.
     virtual IterPtr getBeginning() {
         isc_throw(NotImplemented, "This method is not implemented.");
@@ -123,9 +120,6 @@ protected:
     /// \brief See \c isc::dns::RRsetCollectionBase::getEnd() for
     /// documentation.
     ///
-    /// \throw isc::dns::RRsetCollectionError if using the iterator
-    /// results in some underlying datasrc error, or if \c disable() was
-    /// called.
     /// \throw isc::NotImplemented as it's not implemented currently.
     virtual IterPtr getEnd() {
         isc_throw(NotImplemented, "This method is not implemented.");