mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 13:35:44 +01:00
8 lines
198 B
Java
8 lines
198 B
Java
|
|
package sonia.scm.plugin;
|
||
|
|
|
||
|
|
public class PluginDownloadException extends PluginInstallException {
|
||
|
|
public PluginDownloadException(String message, Throwable cause) {
|
||
|
|
super(message, cause);
|
||
|
|
}
|
||
|
|
}
|