19 #ifndef GRPCPP_IMPL_CODEGEN_STATUS_H
20 #define GRPCPP_IMPL_CODEGEN_STATUS_H
38 "Mismatched status code");
41 "Mismatched status code");
44 "Mismatched status code");
47 "Mismatched status code");
50 "Mismatched status code");
53 "Mismatched status code");
56 "Mismatched status code");
59 "Mismatched status code");
62 "Mismatched status code");
65 "Mismatched status code");
68 "Mismatched status code");
71 "Mismatched status code");
74 "Mismatched status code");
77 "Mismatched status code");
80 "Mismatched status code");
83 "Mismatched status code");
86 "Mismatched status code");
127 std::string error_message_;
128 std::string binary_error_details_;
Did it work? If it didn't, why?
Definition: status.h:31
std::string error_message() const
Return the instance's error message.
Definition: status.h:112
StatusCode error_code() const
Return the instance's error code.
Definition: status.h:110
std::string error_details() const
Return the (binary) error details.
Definition: status.h:115
Status()
Construct an OK instance.
Definition: status.h:34
Status(StatusCode code, const std::string &error_message)
Construct an instance with associated code and error_message.
Definition: status.h:91
Status(StatusCode code, const std::string &error_message, const std::string &error_details)
Construct an instance with code, error_message and error_details.
Definition: status.h:97
static const Status & CANCELLED
A CANCELLED pre-defined instance.
Definition: status.h:107
void IgnoreError() const
Definition: status.h:123
bool ok() const
Is the status OK?
Definition: status.h:118
static const Status & OK
An OK pre-defined instance.
Definition: status.h:105
@ GRPC_STATUS_UNAUTHENTICATED
The request does not have valid authentication credentials for the operation.
Definition: status.h:70
@ GRPC_STATUS_DATA_LOSS
Unrecoverable data loss or corruption.
Definition: status.h:144
@ GRPC_STATUS_CANCELLED
The operation was cancelled (typically by the caller).
Definition: status.h:31
@ GRPC_STATUS_ABORTED
The operation was aborted, typically due to a concurrency issue like sequencer check failures,...
Definition: status.h:102
@ GRPC_STATUS_INVALID_ARGUMENT
Client specified an invalid argument.
Definition: status.h:44
@ GRPC_STATUS_PERMISSION_DENIED
The caller does not have permission to execute the specified operation.
Definition: status.h:66
@ GRPC_STATUS_FAILED_PRECONDITION
Operation was rejected because the system is not in a state required for the operation's execution.
Definition: status.h:95
@ GRPC_STATUS_DEADLINE_EXCEEDED
Deadline expired before operation could complete.
Definition: status.h:51
@ GRPC_STATUS_UNKNOWN
Unknown error.
Definition: status.h:38
@ GRPC_STATUS_UNIMPLEMENTED
Operation is not implemented or not supported/enabled in this service.
Definition: status.h:122
@ GRPC_STATUS_OK
Not an error; returned on success.
Definition: status.h:28
@ GRPC_STATUS_UNAVAILABLE
The service is currently unavailable.
Definition: status.h:141
@ GRPC_STATUS_RESOURCE_EXHAUSTED
Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out ...
Definition: status.h:74
@ GRPC_STATUS_OUT_OF_RANGE
Operation was attempted past the valid range.
Definition: status.h:119
@ GRPC_STATUS_ALREADY_EXISTS
Some entity that we attempted to create (e.g., file or directory) already exists.
Definition: status.h:58
@ GRPC_STATUS_INTERNAL
Internal errors.
Definition: status.h:127
@ GRPC_STATUS_NOT_FOUND
Some requested entity (e.g., file or directory) was not found.
Definition: status.h:54
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm.h:33
StatusCode
Definition: status_code_enum.h:24
@ INTERNAL
Internal errors.
Definition: status_code_enum.h:119
@ UNIMPLEMENTED
Operation is not implemented or not supported/enabled in this service.
Definition: status_code_enum.h:115
@ UNAUTHENTICATED
The request does not have valid authentication credentials for the operation.
Definition: status_code_enum.h:66
@ RESOURCE_EXHAUSTED
Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out ...
Definition: status_code_enum.h:70
@ PERMISSION_DENIED
The caller does not have permission to execute the specified operation.
Definition: status_code_enum.h:62
@ FAILED_PRECONDITION
Operation was rejected because the system is not in a state required for the operation's execution.
Definition: status_code_enum.h:90
@ ABORTED
The operation was aborted, typically due to a concurrency issue like sequencer check failures,...
Definition: status_code_enum.h:97
@ UNAVAILABLE
The service is currently unavailable.
Definition: status_code_enum.h:132
@ INVALID_ARGUMENT
Client specified an invalid argument.
Definition: status_code_enum.h:41
@ UNKNOWN
Unknown error.
Definition: status_code_enum.h:35
@ OUT_OF_RANGE
Operation was attempted past the valid range.
Definition: status_code_enum.h:112
@ CANCELLED
The operation was cancelled (typically by the caller).
Definition: status_code_enum.h:29
@ DATA_LOSS
Unrecoverable data loss or corruption.
Definition: status_code_enum.h:135
@ NOT_FOUND
Some requested entity (e.g., file or directory) was not found.
Definition: status_code_enum.h:51
@ DEADLINE_EXCEEDED
Deadline expired before operation could complete.
Definition: status_code_enum.h:48
@ ALREADY_EXISTS
Some entity that we attempted to create (e.g., file or directory) already exists.
Definition: status_code_enum.h:55
@ OK
Not an error; returned on success.
Definition: status_code_enum.h:26