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

io.datakernel.exception.TruncatedDataException Maven / Gradle / Ivy

package io.datakernel.exception;

public class TruncatedDataException extends ParseException {
	public TruncatedDataException() {
	}

	public TruncatedDataException(String message) {
		super(message);
	}

	public TruncatedDataException(String message, Throwable cause) {
		super(message, cause);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy