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

io.vertx.zero.exception.IpcMethodTargetException Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.zero.exception;

import io.vertx.up.exception.UpException;

import java.lang.reflect.Method;

public class IpcMethodTargetException extends UpException {

    public IpcMethodTargetException(final Class clazz,
                                    final Method method,
                                    final String to,
                                    final String name) {
        super(clazz, method, to, name);
    }

    @Override
    public int getCode() {
        return -40043;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy