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

se.l4.vibe.VibeException Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package se.l4.vibe;

/**
 * Exception for monitoring errors.
 * 
 * @author Andreas Holstenson
 *
 */
public class VibeException
	extends RuntimeException
{

	public VibeException()
	{
		super();
	}

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy