silentbalanceyh/vertx-zero

View on GitHub
vertx-gaia/vertx-up/src/main/error/io/vertx/up/exception/web/_500RpcMethodInvokeException.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.vertx.up.exception.web;

import io.horizon.exception.WebException;

public class _500RpcMethodInvokeException extends WebException {

    public _500RpcMethodInvokeException(final Class<?> clazz,
                                        final Object returnValue) {
        super(clazz, clazz, returnValue);
    }

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