
com.cookingfox.chefling.api.exception.ContainerBuilderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chefling-di-java Show documentation
Show all versions of chefling-di-java Show documentation
Chefling is a very minimal dependency injection container written in pure Java.
package com.cookingfox.chefling.api.exception;
/**
* Thrown when an error occurs during configuration and processing of container Builder.
*/
public class ContainerBuilderException extends RuntimeException {
public ContainerBuilderException(String message) {
super(message);
}
public ContainerBuilderException(String message, Throwable cause) {
super(message, cause);
}
public ContainerBuilderException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy