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

org.defendev.common.fixture.loader.exception.MissingHardcodedIdException Maven / Gradle / Ivy

package org.defendev.common.fixture.loader.exception;

public class MissingHardcodedIdException extends RuntimeException {

    private static final String MESSAGE_TEMPLATE = "Missing hardcoded Id for entity: [%s]";

    public MissingHardcodedIdException(Class entityClazz) {
        super(String.format(MESSAGE_TEMPLATE, entityClazz.getCanonicalName()));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy