com.hltech.pact.gen.domain.pact.MissingGettersException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pact-gen Show documentation
Show all versions of pact-gen Show documentation
Automated generation of pact files
The newest version!
package com.hltech.pact.gen.domain.pact;
public class MissingGettersException extends RuntimeException {
private static final String MESSAGE_PLACEHOLDER = "Serialization is not possible, %s class has no getters";
MissingGettersException(String className) {
super(String.format(MESSAGE_PLACEHOLDER, className));
}
}