fr.vergne.pester.definition.AlreadyDefinedPropertyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pester-core Show documentation
Show all versions of pester-core Show documentation
Implementation of the Pester library.
The newest version!
package fr.vergne.pester.definition;
@SuppressWarnings("serial")
public class AlreadyDefinedPropertyException extends IllegalArgumentException {
public AlreadyDefinedPropertyException(String propertyName) {
super(propertyName + " is already defined");
}
}