xref: /aosp_15_r20/external/libbrillo/brillo/streams/stream_errors.cc (revision 1a96fba65179ea7d3f56207137718607415c5953)
1*1a96fba6SXin Li // Copyright 2015 The Chromium OS Authors. All rights reserved.
2*1a96fba6SXin Li // Use of this source code is governed by a BSD-style license that can be
3*1a96fba6SXin Li // found in the LICENSE file.
4*1a96fba6SXin Li 
5*1a96fba6SXin Li #include <brillo/streams/stream_errors.h>
6*1a96fba6SXin Li 
7*1a96fba6SXin Li namespace brillo {
8*1a96fba6SXin Li namespace errors {
9*1a96fba6SXin Li namespace stream {
10*1a96fba6SXin Li 
11*1a96fba6SXin Li const char kDomain[] = "stream.io";
12*1a96fba6SXin Li 
13*1a96fba6SXin Li const char kStreamClosed[] = "stream_closed";
14*1a96fba6SXin Li const char kOperationNotSupported[] = "operation_not_supported";
15*1a96fba6SXin Li const char kPartialData[] = "partial_data";
16*1a96fba6SXin Li const char kInvalidParameter[] = "invalid_parameter";
17*1a96fba6SXin Li const char kTimeout[] = "time_out";
18*1a96fba6SXin Li 
19*1a96fba6SXin Li }  // namespace stream
20*1a96fba6SXin Li }  // namespace errors
21*1a96fba6SXin Li }  // namespace brillo
22