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