silentbalanceyh/vertx-zero

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

Summary

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

import io.horizon.exception.WebException;

public class _500DeliveryErrorException extends WebException {

    public _500DeliveryErrorException(final Class<?> clazz,
                                      final String address,
                                      final String message) {
        super(clazz, address, message);
    }

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