ExitCodeExt class

extension ExitCode

Properties

code int
Exit code value.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

badBuiltin → const ExitCodeExt
Misuse of shell built-ins (according to Bash documentation)
cantCreate → const ExitCodeExt
A (user specified) output file cannot be created.
config → const ExitCodeExt
Something was found in an unconfigured or misconfigured state.
data → const ExitCodeExt
Input data was used incorrectly.
error → const ExitCodeExt
Catchall for general errors
interrupt → const ExitCodeExt
Script terminated by Control-C.
ioError → const ExitCodeExt
An error occurred doing I/O on some file.
noExec → const ExitCodeExt
Command invoked cannot execute
noHost → const ExitCodeExt
Host specified did not exist.
noInput → const ExitCodeExt
An input file (not a system file) did not exist or was not readable.
noPerm → const ExitCodeExt
You did not have sufficient permissions to perform the operation.
notFound → const ExitCodeExt
Command not found
noUser → const ExitCodeExt
User specified did not exist.
osError → const ExitCodeExt
An operating system error has been detected.
osFile → const ExitCodeExt
Some system file (e.g. /etc/passwd) does not exist or could not be read.
outOfRange → const ExitCodeExt
Exit status out of range.
signal → const ExitCodeExt
Invalid argument to exit, same ExitCode.usage, 64 Fatal error signal “n”
software → const ExitCodeExt
An internal software error has been detected.
success → const ExitCodeExt
Command completed successfully.
tempFail → const ExitCodeExt
Temporary failure, indicating something is not really an error.
unavailable → const ExitCodeExt
A service is unavailable.
usage → const ExitCodeExt
Command was used incorrectly.