blob: cb3379d3f38ba927d920aa1c9524f9e02e657525 [file] [log] [blame]
// Copyright 2015 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.
#include "garnet/bin/network/net_adapters.h"
#include "garnet/bin/network/net_errors.h"
namespace network {
NetworkErrorPtr MakeNetworkError(int error_code) {
NetworkErrorPtr error = NetworkError::New();
error->code = error_code;
if (error_code <= 0)
error->description = network::ErrorToString(error_code);
return error;
}
} // namespace network