GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: src/zserio/ConstraintException.h Lines: 1 2 50.0 %
Date: 2023-12-13 14:51:09 Branches: 1 2 50.0 %

Line Branch Exec Source
1
#ifndef ZSERIO_CONSTRAINT_EXCEPTION_H_INC
2
#define ZSERIO_CONSTRAINT_EXCEPTION_H_INC
3
4
#include "zserio/CppRuntimeException.h"
5
6
namespace zserio
7
{
8
9
/**
10
 * Exception thrown when a constraint check fails.
11
 */
12
4
class ConstraintException : public CppRuntimeException
13
{
14
public:
15
    using CppRuntimeException::CppRuntimeException;
16
};
17
18
} // namespace zserio
19
20
#endif // ifndef ZSERIO_CONSTRAINT_EXCEPTION_H_INC