All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hltech.pact.gen.domain.pact.MissingGettersException Maven / Gradle / Ivy

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));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy