org.sklsft.generator.exception.PackageNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generator-business-model Show documentation
Show all versions of generator-business-model Show documentation
Module Business Model du projet Generator
package org.sklsft.generator.exception;
public class PackageNotFoundException extends RuntimeException{
/**
*
*/
private static final long serialVersionUID = -5929257156917427754L;
public PackageNotFoundException(String packageName) {
super("Could not find a package with name " + packageName);
}
}