com.github.antelopeframework.dynamicproperty.DynamicPropertiesException Maven / Gradle / Ivy
The newest version!
package com.github.antelopeframework.dynamicproperty;
public class DynamicPropertiesException extends RuntimeException {
private static final long serialVersionUID = 1L;
public DynamicPropertiesException() {
}
public DynamicPropertiesException(Throwable cause) {
super(cause);
}
public DynamicPropertiesException(String message) {
super(message);
}
public DynamicPropertiesException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy