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

com.github.bloodshura.ignitium.ntv.NativeException Maven / Gradle / Ivy

The newest version!
package com.github.bloodshura.ignitium.ntv;

import com.github.bloodshura.ignitium.exception.UncheckedException;

public class NativeException extends UncheckedException {
	public NativeException() {
	}

	public NativeException(CharSequence message) {
		super(message);
	}

	public NativeException(CharSequence message, Throwable cause) {
		super(message, cause);
	}

	public NativeException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy