Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
Lima
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
62
Issues
62
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LimaGroup
Lima
Commits
88824dbf
Commit
88824dbf
authored
May 15, 2018
by
Samuel Debionne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use printErrorStack() since printError() is deprecated
parent
4ecf94de
Pipeline
#3336
passed with stages
in 2 minutes and 25 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
control/src/CtSaving_Hdf5.cpp
control/src/CtSaving_Hdf5.cpp
+2
-2
No files found.
control/src/CtSaving_Hdf5.cpp
View file @
88824dbf
...
...
@@ -452,7 +452,7 @@ void* SaveContainerHdf5::_open(const std::string &filename, std::ios_base::openm
new_file
.
m_instrument_detector
=
new
Group
(
instrument
.
openGroup
(
m_ct_parameters
.
det_name
));
}
}
catch
(
FileIException
&
error
)
{
error
.
printError
();
error
.
printError
Stack
();
THROW_CTL_ERROR
(
Error
)
<<
"File "
<<
filename
<<
" not opened successfully"
;
}
...
...
@@ -667,7 +667,7 @@ long SaveContainerHdf5::_writeFile(void* f,Data &aData,
// catch failure caused by the DataSet operations
}
catch
(
DataSetIException
&
error
)
{
THROW_CTL_ERROR
(
Error
)
<<
"DataSet not created successfully "
<<
error
.
getCDetailMsg
();
error
.
printError
();
error
.
printError
Stack
();
}
// catch failure caused by the DataSpace operations
catch
(
DataSpaceIException
&
error
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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