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

ru.abyss.settings.importer.ImportException Maven / Gradle / Ivy

/*
 * Copyright Бездна (c) 2018.
 */
package ru.abyss.settings.importer;

/**
 * @author Minu <[email protected]>
 * @since 05.06.2018 11:20:39
 */
public class ImportException extends Exception {

	private static final long serialVersionUID = 356402895783820846L;

	public ImportException() {
		super();
	}

	public ImportException(String msg) {
		super(msg);
	}

	public ImportException(String msg, Throwable cause) {
		super(msg, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy