aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src
diff options
context:
space:
mode:
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2015-07-23 09:32:52 +0200
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>2015-07-23 11:09:44 +0200
commit28230d418e9efe480e7140dba2764e45927ee4a9 (patch)
treeec5149c4b732d186d97e65dc122a7a88b97dc317 /sonar-db/src
parent7af633d72d95ce49b37a8e3ced03fb19c91a710f (diff)
downloadsonarqube-28230d418e9efe480e7140dba2764e45927ee4a9.tar.gz
sonarqube-28230d418e9efe480e7140dba2764e45927ee4a9.zip
Create RowNotFoundException as the default DAO Exception thrown
Diffstat (limited to 'sonar-db/src')
-rw-r--r--sonar-db/src/main/java/org/sonar/db/util/RowNotFoundException.java35
1 files changed, 35 insertions, 0 deletions
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:
+ * <ul>
+ * <li>selectOrFailByKey return the element or throws a RowNotFoundException</li>
+ * <li>selectByKey return an Optional (now) or a nullable element (legacy)</li>
+ * </ul>
+ */
+public class RowNotFoundException extends RuntimeException {
+ public RowNotFoundException(String message) {
+ super(message);
+ }
+}