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

com.peterphi.std.net.NoInterfaceException Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
package com.peterphi.std.net;

import java.io.IOException;

public class NoInterfaceException extends IOException
{
	/**
	 *
	 */
	private static final long serialVersionUID = 1L;


	public NoInterfaceException()
	{
		super();
	}


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


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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy