silentbalanceyh/vertx-zero

View on GitHub
vertx-gaia/vertx-ams/src/main/error/io/horizon/exception/boot/CombineOwnerException.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.horizon.exception.boot;

import io.horizon.annotations.Development;
import io.horizon.exception.BootingException;

public class CombineOwnerException extends BootingException {
    public CombineOwnerException(final Class<?> clazz,
                                 final String id,
                                 final String targetId) {
        super(clazz, targetId);
    }

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

    @Development
    private int _40102() {
        return this.getCode();
    }
}