File: exitcode.go

package info (click to toggle)
rclone 1.60.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 34,832 kB
  • sloc: sh: 957; xml: 857; python: 655; javascript: 612; makefile: 269; ansic: 101; php: 74
file content (25 lines) | stat: -rw-r--r-- 1,007 bytes parent folder | download | duplicates (2)
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
// Package exitcode exports rclone's exit status numbers.
package exitcode

const (
	// Success is returned when rclone finished without error.
	Success = iota
	// UsageError is returned when there was a syntax or usage error in the arguments.
	UsageError
	// UncategorizedError is returned for any error not categorised otherwise.
	UncategorizedError
	// DirNotFound is returned when a source or destination directory is not found.
	DirNotFound
	// FileNotFound is returned when a source or destination file is not found.
	FileNotFound
	// RetryError is returned for temporary errors during operations which may be retried.
	RetryError
	// NoRetryError is returned for errors from operations which can't/shouldn't be retried.
	NoRetryError
	// FatalError is returned for errors one or more retries won't resolve.
	FatalError
	// TransferExceeded is returned when network I/O exceeded the quota.
	TransferExceeded
	// NoFilesTransferred everything succeeded, but no transfer was made.
	NoFilesTransferred
)