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

com.github.thorbenkuck.di.runtime.properties.PropertyNotFoundException Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.di.runtime.properties;

import org.jetbrains.annotations.NotNull;

public class PropertyNotFoundException extends RuntimeException {

    public PropertyNotFoundException(@NotNull final String property)  {
        super("Could not found the property \"" + property + "\"");
    }

    public PropertyNotFoundException(
            @NotNull final String property,
            @NotNull final String source
    )  {
        super("Could not found the property \"" + property + "\" in \"" + source + "\"");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy