mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-27 17:59:09 +01:00
13 lines
266 B
Java
13 lines
266 B
Java
|
|
package sonia.scm.plugin;
|
||
|
|
|
||
|
|
public class PluginInstallException extends RuntimeException {
|
||
|
|
|
||
|
|
public PluginInstallException(String message) {
|
||
|
|
super(message);
|
||
|
|
}
|
||
|
|
|
||
|
|
public PluginInstallException(String message, Throwable cause) {
|
||
|
|
super(message, cause);
|
||
|
|
}
|
||
|
|
}
|