mirror of
https://github.com/WiIIiam278/HuskSync.git
synced 2025-12-22 16:19:20 +00:00
13 lines
333 B
Java
13 lines
333 B
Java
package net.william278.husksync;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
/**
|
|
* Indicates an exception occurred while initialising the HuskSync plugin
|
|
*/
|
|
public class HuskSyncInitializationException extends RuntimeException {
|
|
public HuskSyncInitializationException(@NotNull String message) {
|
|
super(message);
|
|
}
|
|
}
|