ifw-daq 3.1.0
IFW Data Acquisition modules
Loading...
Searching...
No Matches
schemaError.hpp
Go to the documentation of this file.
1/**
2* @file
3* @ingroup daq_libjson
4* @copyright
5* (c) Copyright ESO 2022
6* All Rights Reserved
7* ESO (eso.org) is an Intergovernmental Organisation, and therefore special legal conditions apply.
8*/
9#ifndef DAQ_SCHEMAERROR_HPP
10#define DAQ_SCHEMAERROR_HPP
11#include <stdexcept>
12
13namespace daq::json {
14
15/**
16 * JSON Schema error
17 */
18struct SchemaError : std::invalid_argument {
19 using std::invalid_argument::invalid_argument;
20};
21
22} //namespace daq::json
23#endif // DAQ_SCHEMAERROR_HPP
JSON Schema error.
Definition: schemaError.hpp:18