org.zeromq.UncheckedZMQException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeromq Show documentation
Show all versions of jeromq Show documentation
Pure Java implementation of libzmq
The newest version!
package org.zeromq;
public abstract class UncheckedZMQException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public UncheckedZMQException()
{
super();
}
public UncheckedZMQException(String message)
{
super(message);
}
public UncheckedZMQException(Throwable cause)
{
super(cause);
}
public UncheckedZMQException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy