diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-05-01 13:48:41 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-05-01 13:48:41 +0200 |
commit | b7ded5c1d2dab0359213d3bb9b4ad78eaef874dc (patch) | |
tree | 730ea6a26e5388eef088ebe10c823e4860a32344 /sonar-core | |
parent | 743cd21fb175ca4f14cd5e85295835c9c743d194 (diff) | |
download | sonarqube-b7ded5c1d2dab0359213d3bb9b4ad78eaef874dc.tar.gz sonarqube-b7ded5c1d2dab0359213d3bb9b4ad78eaef874dc.zip |
Drop UnsuportedException and improve rule search
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/db/UnsuportedException.java | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/db/UnsuportedException.java b/sonar-core/src/main/java/org/sonar/core/db/UnsuportedException.java deleted file mode 100644 index 6e593f2380b..00000000000 --- a/sonar-core/src/main/java/org/sonar/core/db/UnsuportedException.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * 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.core.db; - -public class UnsuportedException extends RuntimeException { - - public UnsuportedException(String cause) { - super(cause); - } - -} |