1 Star 1 Fork 0

陈文甲 / 学习Hyperledger Fabric 实战联盟链

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
codes.go 2.42 KB
一键复制 编辑 原始数据 按行查看 历史
陈文甲 提交于 2023-02-06 10:51 . 把所有文件添加
/*
Copyright Digital Asset Holdings, LLC 2016 All Rights Reserved.
Copyright IBM Corp. 2017 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.
*/
package errors
// A set of constants for error reason codes, which is based on HTTP codes
// http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
const (
// Invalid inputs on API calls
BadRequest = "400"
// Forbidden due to access control issues
Forbidden = "403"
// Not Found (eg chaincode not found)
NotFound = "404"
// Request timeout (chaincode or ledger)
Timeout = "408"
// Example, duplicate transactions or replay attacks
Conflict = "409"
// Request for resource is not available. Example, a chaincode has
// been upgraded and the request uses an old version
Gone = "410"
// Payload of the request exceeds allowed size
PayloadTooLarge = "413"
// Example, marshal/unmarshalling protobuf error
UnprocessableEntity = "422"
// Protocol version is no longer supported
UpgradeRequired = "426"
// Internal server errors that are not classified below
Internal = "500"
// Requested chaincode function has not been implemented
NotImplemented = "501"
// Requested chaincode is not available
Unavailable = "503"
// File IO errors
FileIO = "520"
// Network IO errors
NetworkIO = "521"
)
// A set of constants for component codes
const (
// BCCSP is fabic/BCCSP
BCCSP = "CSP"
// Common is fabric/common
Common = "CMN"
// Core is fabric/core
Core = "COR"
// Event is fabric/events component
Event = "EVT"
// Gossip is fabric/gossip
Gossip = "GSP"
// Ledger is fabric/core/ledger
Ledger = "LGR"
// Peer is fabric/peer
Peer = "PER"
// Orderer is fabric/orderer
Orderer = "ORD"
// MSP is fabric/msp
MSP = "MSP"
// ChaincodeSupport is fabric/core/chaincode
ChaincodeSupport = "CCS"
// DeliveryService is fabric/core/deliverservice
DeliveryService = "CDS"
// SystemChaincode is fabric/core/scc (system chaincode)
SystemChaincode = "SCC"
)
1
https://gitee.com/venjia/coding-268.git
git@gitee.com:venjia/coding-268.git
venjia
coding-268
学习Hyperledger Fabric 实战联盟链
b3df94c7d330

搜索帮助

53164aa7 5694891 3bd8fe86 5694891