From 28230d418e9efe480e7140dba2764e45927ee4a9 Mon Sep 17 00:00:00 2001 From: Teryk Bellahsene Date: Thu, 23 Jul 2015 09:32:52 +0200 Subject: Create RowNotFoundException as the default DAO Exception thrown --- .../org/sonar/db/util/RowNotFoundException.java | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 sonar-db/src/main/java/org/sonar/db/util/RowNotFoundException.java (limited to 'sonar-db/src') diff --git a/sonar-db/src/main/java/org/sonar/db/util/RowNotFoundException.java b/sonar-db/src/main/java/org/sonar/db/util/RowNotFoundException.java new file mode 100644 index 00000000000..9d91a6c2758 --- /dev/null +++ b/sonar-db/src/main/java/org/sonar/db/util/RowNotFoundException.java @@ -0,0 +1,35 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * SonarQube is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +package org.sonar.db.util; + +/** + * The RuntimeException thrown by default when a element is not found at the DAO layer. + * When selecting by id or key, the methods respect one of the following pattern: + * + */ +public class RowNotFoundException extends RuntimeException { + public RowNotFoundException(String message) { + super(message); + } +} -- cgit v1.2.3