From 24a4b58684728325e1372e449fb38edbbf2aaa0a Mon Sep 17 00:00:00 2001 From: Steven Murray <Steven.Murray@cern.ch> Date: Wed, 10 Mar 2021 18:29:36 +0100 Subject: [PATCH] Simplified error message --- catalogue/RdbmsCatalogue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/RdbmsCatalogue.cpp b/catalogue/RdbmsCatalogue.cpp index 5e8e014e4c..26368bdf87 100644 --- a/catalogue/RdbmsCatalogue.cpp +++ b/catalogue/RdbmsCatalogue.cpp @@ -2988,7 +2988,7 @@ void RdbmsCatalogue::modifyArchiveRouteTapePoolName(const common::dataStructures if(0 == stmt.getNbAffectedRows()) { exception::UserError ue; - ue.getMessage() << "The archive archive route does not exist"; + ue.getMessage() << "Archive route does not exist"; throw ue; } } catch(exception::UserError &ue) { -- GitLab