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

org.cybergarage.upnp.device.InvalidDescriptionException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/******************************************************************
*
*	CyberUPnP for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: InvalidDescriptionException.java
*
*	Revision;
*
*	12/26/02
*		- first revision.
*	
******************************************************************/

package org.cybergarage.upnp.device;

import java.io.*;

public class InvalidDescriptionException extends Exception
{
	public InvalidDescriptionException()
	{
		super();
	}
	
	public InvalidDescriptionException(String s)
	{
		super(s);
	}

	public InvalidDescriptionException(String s, File file)
	{
		super(s + " (" + file.toString() + ")");
	}

	public InvalidDescriptionException(Exception e)
	{
		super(e.getMessage());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy