All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cat.nyaa.nyaacore.cmdreceiver.NoItemInHandException Maven / Gradle / Ivy

There is a newer version: 3.12.2
Show newest version
package cat.nyaa.nyaacore.cmdreceiver;

class NoItemInHandException extends RuntimeException {
    public final boolean isOffHand;

    /**
     * @param ifh true if require item in offhand
     */
    public NoItemInHandException(boolean ifh) {
        isOffHand = ifh;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy