blob: 51d011fd8233e030256bb8e72ab764766950c64f [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_CRYPTAUTH_NETWORK_REQUEST_ERROR_H_
#define COMPONENTS_CRYPTAUTH_NETWORK_REQUEST_ERROR_H_
#include <ostream>
namespace cryptauth {
enum class NetworkRequestError {
// Request could not be completed because the device is offline or has issues
// sending the HTTP request.
kOffline,
// Server endpoint could not be found.
kEndpointNotFound,
// Authentication error contacting back-end.
kAuthenticationError,
// Request was invalid.
kBadRequest,
// The server responded, but the response was not formatted correctly.
kResponseMalformed,
// Internal server error.
kInternalServerError,
// Unknown result.
kUnknown
};
std::ostream& operator<<(std::ostream& stream,
const NetworkRequestError& error);
} // namespace cryptauth
#endif // COMPONENTS_CRYPTAUTH_NETWORK_REQUEST_ERROR_H_