All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cookingfox.chefling.api.exception.NullValueNotAllowedException Maven / Gradle / Ivy

Go to download

Chefling is a very minimal dependency injection container written in pure Java.

There is a newer version: 7.1.1
Show newest version
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