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

io.continual.messaging.MessagePublishException Maven / Gradle / Ivy

There is a newer version: 0.3.20
Show newest version
package io.continual.messaging;

import java.io.IOException;

public class MessagePublishException extends IOException
{
	public MessagePublishException ( ) { super(); }
	public MessagePublishException ( Throwable t ) { super(t); }
	public MessagePublishException ( String msg ) { super(msg); }
	public MessagePublishException ( String msg, Throwable t ) { super(msg,t); }
	private static final long serialVersionUID = 1L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy