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

org.zeromq.ZMQException Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package org.zeromq;

public class ZMQException extends RuntimeException {
  private int errorCode = 0;

  public ZMQException(String message, int errorCode) {
    super(message);

    this.errorCode = errorCode;
  }

  public int getErrorCode() {
    return errorCode;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy