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

Line Branch Exec Source
1
#ifndef ZSERIO_PUBSUB_EXCEPTION_H_INC
2
#define ZSERIO_PUBSUB_EXCEPTION_H_INC
3
4
#include "zserio/CppRuntimeException.h"
5
6
namespace zserio
7
{
8
9
/**
10
 * Exception thrown when an error in Pub/Sub occurs.
11
 */
12
4
class PubsubException : public CppRuntimeException
13
{
14
public:
15
    using CppRuntimeException::CppRuntimeException;
16
};
17
18
} // namespace zserio
19
20
#endif // ZSERIO_PUBSUB_EXCEPTION_H_INC