CCF
Loading...
Searching...
No Matches
error_reporter.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the Apache 2.0 License.
3#pragma once
4
5#include "ccf/rpc_context.h"
6
7namespace http
8{
10 {
11 public:
12 virtual ~ErrorReporter() = default;
15 const ccf::ListenInterfaceID&) = 0;
17 const ccf::ListenInterfaceID&) = 0;
18 };
19}
Definition error_reporter.h:10
virtual void report_request_payload_too_large_error(const ccf::ListenInterfaceID &)=0
virtual ~ErrorReporter()=default
virtual void report_request_header_too_large_error(const ccf::ListenInterfaceID &)=0
virtual void report_parsing_error(const ccf::ListenInterfaceID &)=0
std::string ListenInterfaceID
Definition rpc_context.h:21
Definition error_reporter.h:8