/*
 * Copyright 2017-2020 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.micronaut.context.exceptions;

import io.micronaut.context.Qualifier;
import org.jetbrains.annotations.NotNull;

Thrown when no such beans exists.
Author:Graeme Rocher
Since:1.0
/** * Thrown when no such beans exists. * * @author Graeme Rocher * @since 1.0 */
public class NoSuchBeanException extends BeanContextException {
Params:
  • beanType – The bean type
/** * @param beanType The bean type */
public NoSuchBeanException(Class beanType) { super("No bean of type [" + beanType.getName() + "] exists." + additionalMessage()); }
Params:
  • beanType – The bean type
  • qualifier – The qualifier
Type parameters:
  • <T> – The type
/** * @param beanType The bean type * @param qualifier The qualifier * @param <T> The type */
public <T> NoSuchBeanException(Class<T> beanType, Qualifier<T> qualifier) { super("No bean of type [" + beanType.getName() + "] exists" + (qualifier != null ? " for the given qualifier: " + qualifier : "") + "." + additionalMessage()); }
Params:
  • message – The message
/** * @param message The message */
protected NoSuchBeanException(String message) { super(message); } @NotNull private static String additionalMessage() { return " Make sure the bean is not disabled by bean requirements (enable trace logging for 'io.micronaut.context.condition' to check) and if the bean is enabled then ensure the class is declared a bean and annotation processing is enabled (for Java and Kotlin the 'micronaut-inject-java' dependency should be configured as an annotation processor)."; } }