silentbalanceyh/vertx-zero

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

Summary

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

import io.horizon.annotations.Development;
import io.horizon.eon.error.ErrorCode;
import io.horizon.exception.InternalException;

public class PoolKeyNullException extends InternalException {
    public PoolKeyNullException(final Class<?> caller) {
        super(caller, ErrorCode._11008.M());
    }

    @Override
    protected int getCode() {
        return ErrorCode._11008.V();
    }

    @Development("IDE视图专用")
    private int __11008() {
        return this.getCode();
    }
}