com.tngtech.propertyloader.impl.PropertyFileReaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of property-loader Show documentation
Show all versions of property-loader Show documentation
The property loader is a java library for managing property configurations.
package com.tngtech.propertyloader.impl;
public class PropertyFileReaderException extends RuntimeException {
public PropertyFileReaderException(String message, Throwable cause) {
super(message, cause);
}
}