
com.cookingfox.chefling.api.exception.NullValueNotAllowedException 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 a null value is not allowed.
*/
public class NullValueNotAllowedException extends ContainerException {
public NullValueNotAllowedException(String name) {
super(String.format("Value for '%s' can not be null", name));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy