io.polyapi.client.error.generation.GeneratedClassNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library Show documentation
Show all versions of library Show documentation
Java client library for Poly API
The newest version!
package io.polyapi.client.error.generation;
/**
* Exception thrown when a generated class is not loaded into the class loader.
*/
public class GeneratedClassNotFoundException extends GenerationException {
public GeneratedClassNotFoundException(String qualifiedName, Throwable cause) {
super("Class with qualified name '%s' not found.", qualifiedName, cause);
}
}