All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opensky.libadsb.exceptions.MissingInformationException Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy