
com.github.thorbenkuck.di.runtime.properties.PropertyNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wire-di-runtime-environment Show documentation
Show all versions of wire-di-runtime-environment Show documentation
Easy and simple di using annotation processors
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