
com.cookingfox.chefling.api.exception.ContainerException 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;
/**
* Base exception class for the container.
*/
public class ContainerException extends RuntimeException {
public ContainerException(String message) {
super(message);
}
public ContainerException(Throwable cause) {
super(cause);
}
public ContainerException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy