com.github.bloodshura.ignitium.cfg.json.mapping.JsonMappingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ignitium-cfg Show documentation
Show all versions of ignitium-cfg Show documentation
A collection of configuration and serialization readers and writers, like JSON, internationalization (I18n), and CSV.
package com.github.bloodshura.ignitium.cfg.json.mapping;
import com.github.bloodshura.ignitium.exception.UncheckedException;
public class JsonMappingException extends UncheckedException {
public JsonMappingException(CharSequence message) {
super(message);
}
public JsonMappingException(CharSequence message, Throwable cause) {
super(message, cause);
}
public JsonMappingException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy