org.legendofdragoon.scripting.meta.NoSuchVersionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of script-recompiler Show documentation
Show all versions of script-recompiler Show documentation
Tools for working with Legend of Dragoon scripts
package org.legendofdragoon.scripting.meta;
public class NoSuchVersionException extends Exception {
public NoSuchVersionException() {
super();
}
public NoSuchVersionException(final String message) {
super(message);
}
public NoSuchVersionException(final String message, final Throwable cause) {
super(message, cause);
}
public NoSuchVersionException(final Throwable cause) {
super(cause);
}
protected NoSuchVersionException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy