Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
9af84404
Commit
9af84404
authored
Oct 28, 2015
by
Eric Cano
Browse files
Added exceptions to not yet implemented functions.
parent
87d9b62e
Changes
2
Hide whitespace changes
Inline
Side-by-side
scheduler/ArchiveJob.cpp
View file @
9af84404
...
...
@@ -64,10 +64,12 @@ void cta::ArchiveJob::complete() {
// failed
//------------------------------------------------------------------------------
void
cta
::
ArchiveJob
::
failed
(
const
cta
::
exception
::
Exception
&
ex
)
{
throw
std
::
runtime_error
(
"cta::ArchiveJob::failed(): not implemented"
);
}
//------------------------------------------------------------------------------
// retry
//------------------------------------------------------------------------------
void
cta
::
ArchiveJob
::
retry
()
{
throw
std
::
runtime_error
(
"cta::ArchiveJob::retry(): not implemented"
);
}
scheduler/RetrieveJob.cpp
View file @
9af84404
...
...
@@ -50,9 +50,12 @@ void cta::RetrieveJob::complete() {
// failed
//------------------------------------------------------------------------------
void
cta
::
RetrieveJob
::
failed
()
{
throw
std
::
runtime_error
(
"cta::RetrieveJob::failed(): not implemented"
);
}
//------------------------------------------------------------------------------
// retry
//------------------------------------------------------------------------------
void
cta
::
RetrieveJob
::
retry
()
{
}
void
cta
::
RetrieveJob
::
retry
()
{
throw
std
::
runtime_error
(
"cta::RetrieveJob::retry(): not implemented"
);
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment