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

com.github.bloodshura.ignitium.cfg.json.mapping.JsonMappingException Maven / Gradle / Ivy

Go to download

A collection of configuration and serialization readers and writers, like JSON, internationalization (I18n), and CSV.

There is a newer version: 1.0.1
Show newest version
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