com.github.easypack.script.ScriptException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easypack-maven-plugin Show documentation
Show all versions of easypack-maven-plugin Show documentation
Maven plugin for building Java applications in tar, zip and tar.gz format.
The newest version!
package com.github.easypack.script;
/**
* Exception thrown when there is an error writing the scripts.
*
* @author agusmunioz
*
*/
public class ScriptException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ScriptException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy