-// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2018-2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
}
} else {
- isc_throw(db::NoSuchDatabase, "no database found for selector: "
+ isc_throw(db::NoSuchDatabase, "no such database found for selector: "
<< backend_selector.toText());
}
}
}
} else {
- isc_throw(db::NoSuchDatabase, "no database found for selector: "
+ isc_throw(db::NoSuchDatabase, "no such database found for selector: "
<< backend_selector.toText());
}
}
Args... input) {
auto backends = selectBackends(backend_selector);
if (backends.empty()) {
- isc_throw(db::NoSuchDatabase, "no database found for selector: "
+ isc_throw(db::NoSuchDatabase, "no such database found for selector: "
<< backend_selector.toText());
} else if (backends.size() > 1) {
- isc_throw(db::AmbiguousDatabase, "more than 1 database found for "
+ isc_throw(db::AmbiguousDatabase, "more than one database found for "
"selector: " << backend_selector.toText());
}