org.opensky.libadsb.exceptions.MissingInformationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libadsb Show documentation
Show all versions of libadsb Show documentation
A Mode S and ADS-B decoding library for Java
package org.opensky.libadsb.exceptions;
/**
* This file is part of org.opensky.libadsb.
*
* org.opensky.libadsb is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* org.opensky.libadsb is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with org.opensky.libadsb. If not, see .
*/
/**
* Exception which is thrown when someone calls a getter but the information
* is actually not available. The programmer has to check the subtype codes
* to avoid this exception.
*
* @author Matthias Schäfer ([email protected])
*/
public class MissingInformationException extends Exception {
private static final long serialVersionUID = -4600948683278132312L;
public MissingInformationException(String reason) {
super(reason);
}
}