com.g2forge.alexandria.wizard.InputUnspecifiedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-wizard Show documentation
Show all versions of ax-wizard Show documentation
Library for building command line and GUI wizards.
The newest version!
package com.g2forge.alexandria.wizard;
import java.util.NoSuchElementException;
public class InputUnspecifiedException extends NoSuchElementException {
private static final long serialVersionUID = -5902244684430582312L;
public InputUnspecifiedException() {}
public InputUnspecifiedException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy