com.llamalad7.mixinextras.sugar.impl.SugarApplicationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mixinextras-fabric Show documentation
Show all versions of mixinextras-fabric Show documentation
Companion library to Mixin with lots of features to improve the compatibility and concision of your mixins!
package com.llamalad7.mixinextras.sugar.impl;
import org.spongepowered.asm.mixin.throwables.MixinException;
public class SugarApplicationException extends MixinException {
public SugarApplicationException(String message) {
super(message);
}
public SugarApplicationException(String message, Throwable cause) {
super(message, cause);
}
}