mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-07-09 07:02:47 +02: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);
|
||
|
|
}
|
||
|
|
}
|