com.iwillfailyou.plugin.IwfyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-plugin Show documentation
Show all versions of java-plugin Show documentation
Iwillfailyou java plugin library
The newest version!
package com.iwillfailyou.plugin;
public final class IwfyException extends Exception {
public IwfyException(final String message) {
super(message);
}
public IwfyException(final String message, final Throwable cause) {
super(message, cause);
}
}