-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: jev <[email protected]>
- Loading branch information
Showing
5 changed files
with
78 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,34 @@ | ||
namespace Dapr.Common.Exceptions | ||
// ------------------------------------------------------------------------ | ||
// Copyright 2024 The Dapr Authors | ||
// 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. | ||
// ------------------------------------------------------------------------ | ||
|
||
namespace Dapr.Common.Exceptions | ||
{ | ||
internal class DaprExtendedErrorConstants | ||
/// <summary> | ||
/// Definitions of expected types to be returned from the Dapr runtime. | ||
/// </summary> | ||
internal static class DaprExtendedErrorConstants | ||
{ | ||
public const string ErrorDetailTypeUrl = "type.googleapis.com/"; | ||
|
||
public const string GrpcDetails = "grpc-status-details-bin"; | ||
public const string ErrorInfo = $"{ErrorDetailTypeUrl}Google.rpc.ErrorInfo"; | ||
public const string RetryInfo = $"{ErrorDetailTypeUrl}Google.rpc.RetryInfo"; | ||
public const string DebugInfo = $"{ErrorDetailTypeUrl}Google.rpc.DebugInfo"; | ||
public const string QuotaFailure = $"{ErrorDetailTypeUrl}Google.rpc.QuotaFailure"; | ||
public const string PreconditionFailure = $"{ErrorDetailTypeUrl}Google.rpc.PreconditionFailure"; | ||
public const string BadRequest = $"{ErrorDetailTypeUrl}Google.rpc.BadRequest"; | ||
public const string RequestInfo = $"{ErrorDetailTypeUrl}Google.rpc.RequestInfo"; | ||
public const string ResourceInfo = $"{ErrorDetailTypeUrl}Google.rpc.ResourceInfo"; | ||
public const string Help = $"{ErrorDetailTypeUrl}Google.rpc.Help"; | ||
public const string LocalizedMessage = $"{ErrorDetailTypeUrl}Google.rpc.LocalizedMessage"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters