forked from MYPei/libsubmit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.py
More file actions
89 lines (62 loc) · 2.67 KB
/
Copy patherror.py
File metadata and controls
89 lines (62 loc) · 2.67 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
class ConfigurationError(Exception):
"""Error raised when a class constructor has not been initialized correctly."""
pass
class ExecutionProviderException(Exception):
""" Base class for all exceptions
Only to be invoked when only a more specific error is not available.
"""
pass
class SchedulerMissingArgs(ExecutionProviderException):
''' Error raised when the template used to compose the submit script to the local resource manager is missing required arguments
'''
def __init__(self, missing_keywords, sitename):
self.missing_keywords = missing_keywords
self.sitename = sitename
def __repr__(self):
return "SchedulerMissingArgs: Pool:{0} Arg:{1}".format(self.sitename, self.missing_keywords)
class ScriptPathError(ExecutionProviderException):
''' Error raised when the template used to compose the submit script to the local resource manager is missing required arguments
'''
def __init__(self, script_path, reason):
self.script_path = script_path
self.reason = reason
def __repr__(self):
return "Unable to write submit script:{0} Reason:{1}".format(self.script_path, self.reason)
class BadLauncher(ExecutionProviderException):
''' Error raised when a non callable object is provider as Launcher
'''
def __init__(self, launcher, reason):
self.launcher = launcher
self.reason = reason
def __repr__(self):
return "Bad Launcher provided:{0} Reason:{1}".format(self.launcher, self.reason)
class OptionalModuleMissing(ExecutionProviderException):
''' Error raised a required module is missing for a optional/extra provider
'''
def __init__(self, module_names, reason):
self.module_names = module_names
self.reason = reason
def __repr__(self):
return "Unable to Initialize provider.Missing:{0}, Reason:{1}".format(
self.module_names, self.reason
)
class ChannelRequired(ExecutionProviderException):
''' Execution provider requires a channel.
'''
def __init__(self, provider, reason):
self.provider = provider
self.reason = reason
def __repr__(self):
return "Unable to Initialize provider.Provider:{0}, Reason:{1}".format(
self.provider, self.reason
)
class ScaleOutFailed(ExecutionProviderException):
''' Generic catch. Scale out failed in the submit phase on the provider side
'''
def __init__(self, provider, reason):
self.provider = provider
self.reason = reason
def __repr__(self):
return "Unable to Initialize provider.Provider:{0}, Reason:{1}".format(
self.provider, self.reason
)