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

io.jexxa.core.convention.AdapterConventionViolation Maven / Gradle / Ivy

The newest version!
package io.jexxa.core.convention;

import java.io.Serial;

public class AdapterConventionViolation extends RuntimeException
{
    @Serial
    private static final long serialVersionUID = 1L;

    AdapterConventionViolation(Class clazz)
    {
        super("No suitable constructor available for adapter : " + clazz.getName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy