GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: src/zserio/ServiceException.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_SERVICE_EXCEPTION_H_INC
2
#define ZSERIO_SERVICE_EXCEPTION_H_INC
3
4
#include "zserio/CppRuntimeException.h"
5
6
namespace zserio
7
{
8
9
/**
10
 * Exception thrown when a call of a service method fails.
11
 */
12
4
class ServiceException : public CppRuntimeException
13
{
14
public:
15
    using CppRuntimeException::CppRuntimeException;
16
};
17
18
} // namespace zserio
19
20
#endif // ZSERIO_SERVICE_EXCEPTION_H_INC