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

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

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

import org.jetbrains.annotations.NotNull;

public class InvalidPropertySyntaxException extends RuntimeException {

    public InvalidPropertySyntaxException(
            @NotNull final String s,
            @NotNull final Throwable throwable
    ) {
        super("Invalid property file content: " + s, throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy