]> source.dussan.org Git - sonarqube.git/commitdiff
SONARCLOUD-193 move TypedException to correct package
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Tue, 18 Dec 2018 08:43:28 +0000 (09:43 +0100)
committerSonarTech <sonartech@sonarsource.com>
Fri, 21 Dec 2018 19:21:02 +0000 (20:21 +0100)
server/sonar-ce-task/src/main/java/org/sonar/ce/task/TypedException.java [new file with mode: 0644]
server/sonar-ce-task/src/main/java/org/sonar/ce/task/step/TypedException.java [deleted file]
server/sonar-ce/src/main/java/org/sonar/ce/queue/InternalCeQueueImpl.java
server/sonar-ce/src/test/java/org/sonar/ce/queue/InternalCeQueueImplTest.java

diff --git a/server/sonar-ce-task/src/main/java/org/sonar/ce/task/TypedException.java b/server/sonar-ce-task/src/main/java/org/sonar/ce/task/TypedException.java
new file mode 100644 (file)
index 0000000..2b89d91
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * SonarQube
+ * Copyright (C) 2009-2018 SonarSource SA
+ * mailto:info AT sonarsource DOT com
+ *
+ * This program 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.
+ *
+ * This program 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.ce.task;
+
+/**
+ * This interface is implemented by the exceptions
+ * that provide a type of error when failing
+ * a Compute Engine task.
+ * The error type is persisted and available in
+ * the tasks returned by the web services api/ce.
+ */
+public interface TypedException {
+
+  String getType();
+
+}
diff --git a/server/sonar-ce-task/src/main/java/org/sonar/ce/task/step/TypedException.java b/server/sonar-ce-task/src/main/java/org/sonar/ce/task/step/TypedException.java
deleted file mode 100644 (file)
index cc86808..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2018 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program 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.
- *
- * This program 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.ce.task.step;
-
-/**
- * This interface is implemented by the exceptions
- * that provide a type of error when failing
- * a Compute Engine task.
- * The error type is persisted and available in
- * the tasks returned by the web services api/ce.
- */
-public interface TypedException {
-
-  String getType();
-
-}
index 6259599a49e4f7256e62180cb5ec92cbfc4be0cf..17ca3b6f47493b6e57dcd006facad78fc2f4195a 100644 (file)
@@ -38,7 +38,7 @@ import org.sonar.ce.monitoring.CEQueueStatus;
 import org.sonar.ce.task.CeTask;
 import org.sonar.ce.task.CeTaskResult;
 import org.sonar.ce.task.projectanalysis.component.VisitException;
-import org.sonar.ce.task.step.TypedException;
+import org.sonar.ce.task.TypedException;
 import org.sonar.core.util.UuidFactory;
 import org.sonar.db.DbClient;
 import org.sonar.db.DbSession;
index 68ed1ff8135bfcbd2386f8348c85302b4d37e82d..d6afc3a138043471b115d208a01919caf15620e9 100644 (file)
@@ -36,7 +36,7 @@ import org.sonar.ce.monitoring.CEQueueStatus;
 import org.sonar.ce.monitoring.CEQueueStatusImpl;
 import org.sonar.ce.task.CeTask;
 import org.sonar.ce.task.CeTaskResult;
-import org.sonar.ce.task.step.TypedException;
+import org.sonar.ce.task.TypedException;
 import org.sonar.core.util.UuidFactory;
 import org.sonar.core.util.UuidFactoryImpl;
 import org.sonar.db.DbSession;