]> source.dussan.org Git - pf4j.git/commitdiff
Resolve #218
authorDecebal Suiu <decebal.suiu@gmail.com>
Wed, 16 May 2018 16:27:44 +0000 (19:27 +0300)
committerDecebal Suiu <decebal.suiu@gmail.com>
Wed, 16 May 2018 16:27:44 +0000 (19:27 +0300)
pf4j/src/main/java/org/pf4j/AbstractPluginManager.java
pf4j/src/main/java/org/pf4j/PluginAlreadyLoadedException.java [new file with mode: 0644]
pf4j/src/main/java/org/pf4j/PluginException.java

index 2a3e27a149366a21d9513831f5ef1f28ea75852e..4336df988c4e83baf7e8e9e78f2b317479c4cac7 100644 (file)
@@ -807,8 +807,7 @@ public abstract class AbstractPluginManager implements PluginManager {
         // test for plugin duplication
         String pluginId = idForPath(pluginPath);
         if (pluginId != null) {
-            log.warn("Plugin '{}' already loaded with id '{}'", pluginPath, pluginId);
-            return null;
+            throw new PluginAlreadyLoadedException(pluginId, pluginPath);
         }
 
         // retrieves the plugin descriptor
diff --git a/pf4j/src/main/java/org/pf4j/PluginAlreadyLoadedException.java b/pf4j/src/main/java/org/pf4j/PluginAlreadyLoadedException.java
new file mode 100644 (file)
index 0000000..adfd90b
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2012-present the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.pf4j;
+
+import java.nio.file.Path;
+
+/**
+ * @author Decebal Suiu
+ */
+public class PluginAlreadyLoadedException extends PluginException {
+
+    private final String pluginId;
+    private final Path pluginPath;
+
+    public PluginAlreadyLoadedException(String pluginId, Path pluginPath) {
+        super("Plugin '{}' already loaded with id '{}'", pluginPath, pluginId);
+
+        this.pluginId = pluginId;
+        this.pluginPath = pluginPath;
+    }
+
+    public String getPluginId() {
+        return pluginId;
+    }
+
+    public Path getPluginPath() {
+        return pluginPath;
+    }
+
+}
index 0d1e8e249bf73711b9f804c96c32893cde21f88c..d1ba6f2f4f5788c137d26b522a2b413acfeb29ac 100644 (file)
@@ -19,12 +19,13 @@ import org.pf4j.util.StringUtils;
 
 /**
  * An exception used to indicate that a plugin problem occurred.
+ * It's a generic plugin exception class to be thrown when no more specific class is applicable.
  *
  * @author Decebal Suiu
  */
 public class PluginException extends Exception {
 
-       public PluginException() {
+    public PluginException() {
         super();
     }