aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/vespa/documentapi/messagebus/messages/wrongdistributionreply.cpp
blob: 3c6d38806a39c21eee02c05b89a796c413cf187b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "wrongdistributionreply.h"
#include <vespa/documentapi/messagebus/documentprotocol.h>

namespace documentapi {

WrongDistributionReply::WrongDistributionReply() :
    DocumentReply(DocumentProtocol::REPLY_WRONGDISTRIBUTION),
    _systemState()
{}

WrongDistributionReply::WrongDistributionReply(const string &systemState) :
    DocumentReply(DocumentProtocol::REPLY_WRONGDISTRIBUTION),
    _systemState(systemState)
{}

WrongDistributionReply::~WrongDistributionReply() {}

}