pl.pojo.tester.internal.field.ImpossibleEnumValueChangeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pojo-tester Show documentation
Show all versions of pojo-tester Show documentation
Java pojo-methods testing library.
The newest version!
package pl.pojo.tester.internal.field;
class ImpossibleEnumValueChangeException extends RuntimeException {
ImpossibleEnumValueChangeException(final Class> type) {
super("Enum with type '" + type.getName() + "' has no enum constants. The only value of field with this type is null.");
}
}