org.sklsft.generator.exception.TableNotFoundException 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 TableNotFoundException extends RuntimeException {
private static final long serialVersionUID = 1L;
public TableNotFoundException (String message) {
super(message);
}
public TableNotFoundException (String message, Throwable t) {
super(message, t);
}
}