Lines
0 %
Functions
#pragma once
#include <string>
#include "envoy/common/exception.h"
#include "envoy/http/codes.h"
#include "envoy/http/header_map.h"
namespace Envoy {
namespace Http {
/**
* Indicates a client (local) side error which should not happen.
*/
class CodecClientException : public EnvoyException {
public:
CodecClientException(const std::string& message) : EnvoyException(message) {}
};
} // namespace Http
} // namespace Envoy