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

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

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

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public class PropertiesNotFoundException extends RuntimeException {
    public PropertiesNotFoundException(
            @NotNull final String fileName,
            @Nullable final Throwable throwable
    ) {
        super("Could not find the property: \"" + fileName + "\" in classpath.", throwable);
    }
    public PropertiesNotFoundException(
            @Nullable final Throwable throwable
    ) {
        super("Property could not be loaded.", throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy