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

gov.loc.cygwin.CygwinException Maven / Gradle / Ivy

Go to download

The BAGIT LIBRARY is a software library intended to support the creation, manipulation, and validation of bags. Its current version is 0.97. It is version aware with the earliest supported version being 0.93.

There is a newer version: 5.2.0
Show newest version
package gov.loc.cygwin;

public class CygwinException extends Exception
{
	private static final long serialVersionUID = 1L;

	public CygwinException()
	{
		super();
	}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy