WRENCH
1.11
Cyberinfrastructure Simulation Workbench
Overview
Installation
Getting Started
WRENCH 101
WRENCH 102
APIs Reference
User
Developer
Internal
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Functions
Typedefs
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
Enumerator
c
d
e
f
k
n
p
r
s
t
u
Files
File List
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
include
wrench
failure_causes
FailureCause.h
1
10
#ifndef WRENCH_FAILURECAUSE_H
11
#define WRENCH_FAILURECAUSE_H
12
13
#include <set>
14
#include <string>
15
16
#include "wrench/services/Service.h"
17
#include "wrench/services/storage/StorageService.h"
18
#include "wrench/services/compute/ComputeService.h"
19
20
namespace
wrench
{
21
22
/***********************/
24
/***********************/
25
31
class
FailureCause
{
32
33
public
:
34
35
FailureCause
() =
default
;
36
37
/***********************/
39
/***********************/
40
virtual
~
FailureCause
() =
default
;
41
/***********************/
43
/***********************/
44
50
virtual
std::string
toString
() = 0;
51
52
};
53
54
/***********************/
56
/***********************/
57
};
58
59
60
#endif //WRENCH_FAILURECAUSE_H
wrench
Definition:
Action.cpp:28
wrench::FailureCause
A top-level class to describe all simulation-valid failures that can occur during workflow execution ...
Definition:
FailureCause.h:31
wrench::FailureCause::toString
virtual std::string toString()=0
Return an error message that describes the failure cause (to be overridden)