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

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

The newest version!
package io.vertx.zero.exception;

import io.horizon.exception.BootingException;
import io.vertx.up.util.Ut;

import java.util.Set;

public class NamedNotFoundException extends BootingException {

    public NamedNotFoundException(final Class clazz,
                                  final Set sets,
                                  final String value) {
        super(clazz, Ut.fromJoin(sets), value);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy