ifw-daq  3.0.0-pre2
IFW Data Acquisition modules
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 
13 namespace daq::json {
14 
15 /**
16  * JSON Schema error
17  */
18 struct 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