org.legendofdragoon.modloader.ModNotLoadedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mod-loader Show documentation
Show all versions of mod-loader Show documentation
The mod loader used by various Severed Chains projects
package org.legendofdragoon.modloader;
public class ModNotLoadedException extends RuntimeException {
public ModNotLoadedException(final String message) {
super(message);
}
public ModNotLoadedException(final String message, final Throwable cause) {
super(message, cause);
}
public ModNotLoadedException(final Throwable cause) {
super(cause);
}
protected ModNotLoadedException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy