for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
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));
}