Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 917 Bytes

NoConstructorWithAutowiredAnnotationBeanException.md

File metadata and controls

15 lines (9 loc) · 917 Bytes

NoConstructorWithAutowiredAnnotationBeanException

Exception thrown to indicate that no constructor with the Autowired annotation is found for a bean class within a Bring Dependency Injection framework.

Constructor

NoConstructorWithAutowiredAnnotationBeanException(Class<T> clazz, String listOfConstructors)

Constructs a new NoConstructorWithAutowiredAnnotationBeanException with a message indicating the absence of a constructor with the Autowired annotation for the specified class.

  • Parameters:
    • clazz: The class for which no constructor with Autowired annotation is found.
    • listOfConstructors: String representation of the list of constructors found for the class (to guide adding Autowired annotation to one of them).

Java Doc