You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.6 KiB
81 lines
2.6 KiB
/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. */
|
|
|
|
syntax = "proto2";
|
|
option optimize_for = LITE_RUNTIME;
|
|
package paddle.platform.error;
|
|
|
|
enum Code {
|
|
// Legacy error.
|
|
// Error type string: "Error"
|
|
LEGACY = 0;
|
|
|
|
// Client specified an invalid argument.
|
|
// Error type string: "InvalidArgumentError"
|
|
INVALID_ARGUMENT = 1;
|
|
|
|
// Some requested entity (e.g., file or directory) was not found.
|
|
// Error type string: "NotFoundError"
|
|
NOT_FOUND = 2;
|
|
|
|
// Operation tried to iterate past the valid input range. E.g., seeking or
|
|
// reading past end of file.
|
|
// Error type string: "OutOfRangeError"
|
|
OUT_OF_RANGE = 3;
|
|
|
|
// Some entity that we attempted to create (e.g., file or directory)
|
|
// already exists.
|
|
// Error type string: "AlreadyExistsError"
|
|
ALREADY_EXISTS = 4;
|
|
|
|
// Some resource has been exhausted, perhaps a per-user quota, or
|
|
// perhaps the entire file system is out of space.
|
|
// Error type string: "ResourceExhaustedError"
|
|
RESOURCE_EXHAUSTED = 5;
|
|
|
|
// Operation was rejected because the system is not in a state
|
|
// required for the operation's execution.
|
|
// Error type string: "PreconditionNotMetError"
|
|
PRECONDITION_NOT_MET = 6;
|
|
|
|
// The caller does not have permission to execute the specified
|
|
// operation.
|
|
// Error type string: "PermissionDeniedError"
|
|
PERMISSION_DENIED = 7;
|
|
|
|
// Deadline expired before operation could complete.
|
|
// Error type string: "ExecutionTimeout"
|
|
EXECUTION_TIMEOUT = 8;
|
|
|
|
// Operation is not implemented or not supported/enabled in this service.
|
|
// Error type string: "UnimpelmentedError"
|
|
UNIMPLEMENTED = 9;
|
|
|
|
// The service is currently unavailable. This is a most likely a
|
|
// transient condition and may be corrected by retrying with
|
|
// a backoff.
|
|
// Error type string: "UnavailableError"
|
|
UNAVAILABLE = 10;
|
|
|
|
// Fatal errors. Means some invariant expected by the underlying
|
|
// system has been broken. If you see one of these errors,
|
|
// something is very broken.
|
|
// Error type string: "FatalError"
|
|
FATAL = 11;
|
|
|
|
// Third-party library error.
|
|
// Error type string: "ExternalError"
|
|
EXTERNAL = 12;
|
|
}
|