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

io.polyapi.client.error.generation.MissingDefaultConstructorException Maven / Gradle / Ivy

package io.polyapi.client.error.generation;

/**
 * Exception thrown when trying to access the constructor of a generated class and it doesn't exist.
 */
public class MissingDefaultConstructorException extends GenerationException {

    public MissingDefaultConstructorException(String qualifiedName, Throwable cause) {
        super("Attempting to access default constructor for class {} and it is not accessible.", qualifiedName, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy