net.sf.marineapi.nmea.parser.DataNotAvailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.everit.osgi.bundles.net.sf.marineapi Show documentation
Show all versions of org.everit.osgi.bundles.net.sf.marineapi Show documentation
Java Marine API is an NMEA 0183 library for Java (http://ktuukkan.github.io/marine-api/).
The newest version!
/*
* DataNotAvailableException.java
* Copyright (C) 2010 Kimmo Tuukkanen
*
* This file is part of Java Marine API.
*
*
* Java Marine API is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Java Marine API 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Java Marine API. If not, see .
*/
package net.sf.marineapi.nmea.parser;
/**
* Thrown to indicate that requested data is not available. For example, when
* invoking a getter for sentence data field that contains no value.
*
* @author Kimmo Tuukkanen
*/
public class DataNotAvailableException extends RuntimeException {
private static final long serialVersionUID = -3672061046826633631L;
/**
* Constructor
*
* @param msg Exception message
*/
public DataNotAvailableException(String msg) {
super(msg);
}
/**
* Constructor
*
* @param msg Exception message
* @param cause Throwable that caused the exception
*/
public DataNotAvailableException(String msg, Throwable cause) {
super(msg, cause);
}
}