nmealib 0.0.4
NMEA 0183/NMEA 2000 parsing library
Loading...
Searching...
No Matches
nmeaException.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <stdexcept>
5
6namespace nmealib {
7
15class NmeaException : public std::runtime_error {
16public:
24 explicit NmeaException(const std::string& context, const std::string& message, const std::string& details = "");
25};
26
27} // namespace nmealib
Base exception class for all NMEA library errors.