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

de.unibremen.informatik.st.libvcs4j.BinaryFileException Maven / Gradle / Ivy

package de.unibremen.informatik.st.libvcs4j;

import java.io.IOException;

/**
 * Is thrown by {@link VCSFile#readContent()} if the corresponding file is
 * binary (see {@link VCSFile#isBinary()}).
 */
public class BinaryFileException extends IOException {

	/**
	 * Creates a new instance with given detail message.
	 *
	 * @param message
	 * 		The detail message (which is saved for later retrieval
	 * 		by the {@link #getMessage()} method)
	 */
	public BinaryFileException(final String message) {
		super(message);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy