summaryrefslogtreecommitdiff
path: root/daemon/algod/api/server/v2/errors.go
blob: ff1bcbaa07c917d9eafe8ed7714689185a51a2ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (C) 2019-2024 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package v2

var (
	errAppDoesNotExist                         = "application does not exist"
	errAssetDoesNotExist                       = "asset does not exist"
	errAccountAppDoesNotExist                  = "account application info not found"
	errAccountAssetDoesNotExist                = "account asset info not found"
	errBoxDoesNotExist                         = "box not found"
	errFailedLookingUpLedger                   = "failed to retrieve information from the ledger"
	errFailedLookingUpTransactionPool          = "failed to retrieve information from the transaction pool"
	errFailedRetrievingStateDelta              = "failed retrieving State Delta: %v"
	errFailedRetrievingNodeStatus              = "failed retrieving node status"
	errFailedRetrievingLatestBlockHeaderStatus = "failed retrieving latest block header"
	errFailedRetrievingTimeStampOffset         = "failed retrieving timestamp offset from node: %v"
	errFailedSettingTimeStampOffset            = "failed to set timestamp offset on the node: %v"
	errFailedRetrievingSyncRound               = "failed retrieving sync round from ledger"
	errFailedSettingSyncRound                  = "failed to set sync round on the ledger"
	errFailedParsingFormatOption               = "failed to parse the format option"
	errFailedToParseAddress                    = "failed to parse the address"
	errFailedToParseExclude                    = "failed to parse exclude"
	errFailedToEncodeResponse                  = "failed to encode response"
	errInternalFailure                         = "internal failure"
	errNoValidTxnSpecified                     = "no valid transaction ID was specified"
	errInvalidHashType                         = "invalid hash type"
	errTransactionNotFound                     = "could not find the transaction in the transaction pool or in the last 1000 confirmed rounds"
	errServiceShuttingDown                     = "operation aborted as server is shutting down"
	errRequestedRoundInUnsupportedRound        = "requested round would reach only after the protocol upgrade which isn't supported"
	errFailedToParseCatchpoint                 = "failed to parse catchpoint"
	errFailedToAbortCatchup                    = "failed to abort catchup : %v"
	errFailedToStartCatchup                    = "failed to start catchup : %v"
	errCatchpointWouldNotInitialize            = "the node has already been initialized"
	errOperationNotAvailableDuringCatchup      = "operation not available during catchup"
	errRESTPayloadZeroLength                   = "payload was of zero length"
	errRoundGreaterThanTheLatest               = "given round is greater than the latest round"
	errFailedRetrievingTracer                  = "failed retrieving the expected tracer from ledger"
)