Adds gpg, sonatype, changes groupId

This commit is contained in:
Guillaume Tâche
2025-01-03 22:08:50 +01:00
parent c3d9e72e42
commit f59863c628
183 changed files with 860 additions and 779 deletions

View File

@@ -0,0 +1,36 @@
package ch.gtache.fxml.compiler;
/**
* Exception thrown when a generation error occurs
*/
@SuppressWarnings("serial")
public class GenerationException extends Exception {
/**
* Instantiates a new exception
*
* @param message The message
*/
public GenerationException(final String message) {
super(message);
}
/**
* Instantiates a new exception
*
* @param message The message
* @param cause The cause
*/
public GenerationException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* Instantiates a new exception
*
* @param cause The cause
*/
public GenerationException(final Throwable cause) {
super(cause);
}
}