
org.zeromq.UncheckedZMQException Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy