Type Alias GolemError
Source pub type GolemError = GolemError;
pub enum GolemError {
Show 25 variants
InvalidRequest(GolemErrorInvalidRequest),
WorkerAlreadyExists(GolemErrorWorkerAlreadyExists),
WorkerNotFound(GolemErrorWorkerNotFound),
WorkerCreationFailed(GolemErrorWorkerCreationFailed),
FailedToResumeWorker(GolemErrorFailedToResumeWorker),
ComponentDownloadFailed(GolemErrorComponentDownloadFailed),
ComponentParseFailed(GolemErrorComponentParseFailed),
GetLatestVersionOfComponentFailed(GolemErrorGetLatestVersionOfComponentFailed),
PromiseNotFound(GolemErrorPromiseNotFound),
PromiseDropped(GolemErrorPromiseDropped),
PromiseAlreadyCompleted(GolemErrorPromiseAlreadyCompleted),
Interrupted(GolemErrorInterrupted),
ParamTypeMismatch(GolemErrorParamTypeMismatch),
NoValueInMessage(GolemErrorNoValueInMessage),
ValueMismatch(GolemErrorValueMismatch),
UnexpectedOplogEntry(GolemErrorUnexpectedOplogEntry),
RuntimeError(GolemErrorRuntimeError),
InvalidShardId(GolemErrorInvalidShardId),
PreviousInvocationFailed(GolemErrorPreviousInvocationFailed),
PreviousInvocationExited(GolemErrorPreviousInvocationExited),
Unknown(GolemErrorUnknown),
InvalidAccount(GolemErrorInvalidAccount),
ShardingNotReady(GolemErrorShardingNotReady),
InitialComponentFileDownloadFailed(GolemErrorInitialComponentFileDownloadFailed),
FileSystemError(GolemErrorFileSystemError),
}