tech.ferus.util.config.transformer.TransformerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ConfigKeys Show documentation
Show all versions of ConfigKeys Show documentation
ConfigKeys is a simple wrapper for zml's Configurate, providing a more stream-lined way to access configuration on-the-fly.
The newest version!
package tech.ferus.util.config.transformer;
public class TransformerException extends UnsupportedOperationException {
public TransformerException(final String message) {
super(message);
}
public TransformerException(final Throwable cause) {
super(cause);
}
public TransformerException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy