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

as.leap.vertx.rpc.VertxRPCException Maven / Gradle / Ivy

There is a newer version: 3.3.8
Show newest version
package as.leap.vertx.rpc;

/**
 *
 */
public class VertxRPCException extends RuntimeException {

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

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

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

  protected VertxRPCException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy