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