org.vatplanner.dataformats.vatsimpublic.UnconfiguredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataformats-vatsim-public Show documentation
Show all versions of dataformats-vatsim-public Show documentation
library for parsing and processing publicly accessible VATSIM data formats
package org.vatplanner.dataformats.vatsimpublic;
/**
* {@link RuntimeException} used to indicate that a configuration did not
* specify any actions to be taken.
*/
public class UnconfiguredException extends RuntimeException {
public UnconfiguredException(String msg) {
super(msg);
}
}