1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.maven.plugin;
20
21 import java.util.List;
22 import java.util.stream.Collectors;
23
24 import org.apache.maven.model.Plugin;
25
26
27
28
29
30 public class PluginResolutionException extends Exception {
31
32 private final Plugin plugin;
33
34 public PluginResolutionException(Plugin plugin, Throwable cause) {
35 super(
36 "Plugin " + plugin.getId() + " or one of its dependencies could not be resolved: " + cause.getMessage(),
37 cause);
38 this.plugin = plugin;
39 }
40
41 public PluginResolutionException(Plugin plugin, List<Exception> exceptions, Throwable cause) {
42 super(
43 "Plugin " + plugin.getId() + " or one of its dependencies could not be resolved:"
44 + System.lineSeparator() + "\t"
45 + exceptions.stream()
46 .map(Throwable::getMessage)
47 .collect(Collectors.joining(System.lineSeparator() + "\t")),
48 cause);
49 this.plugin = plugin;
50 }
51
52 public Plugin getPlugin() {
53 return plugin;
54 }
55 }