Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CamiTK
CamiTK Community Edition
Commits
440de4b9
Commit
440de4b9
authored
Jan 22, 2018
by
Emmanuel Promayon
Browse files
FIXED error message
parent
00331914
Changes
3
Hide whitespace changes
Inline
Side-by-side
sdk/applications/actionstatemachine/main.cpp
View file @
440de4b9
...
...
@@ -81,7 +81,7 @@ int main(int argc, char** argv) {
return
EXIT_FAILURE
;
}
catch
(
const
std
::
exception
&
e
)
{
std
::
cout
<<
argv
[
0
]
<<
" aborted..."
<<
std
::
endl
<<
"std
AbortE
xception:"
<<
std
::
endl
<<
e
.
what
()
<<
std
::
endl
;
std
::
cout
<<
argv
[
0
]
<<
" aborted..."
<<
std
::
endl
<<
"std
e
xception:"
<<
std
::
endl
<<
e
.
what
()
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
catch
(...)
{
...
...
sdk/applications/imp/main.cpp
View file @
440de4b9
...
...
@@ -130,7 +130,7 @@ int main(int argc, char* argv[]) {
}
catch
(
const
std
::
exception
&
e
)
{
//QMessageBox::warning(NULL, QString(argv[0]) + " aborted...", "AbortException:" + QString(e.what()));
std
::
cout
<<
argv
[
0
]
<<
" aborted..."
<<
std
::
endl
<<
"std
AbortE
xception:"
<<
std
::
endl
<<
e
.
what
()
<<
std
::
endl
;
std
::
cout
<<
argv
[
0
]
<<
" aborted..."
<<
std
::
endl
<<
"std
e
xception:"
<<
std
::
endl
<<
e
.
what
()
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
catch
(...)
{
...
...
sdk/applications/wizard/Main.cpp
View file @
440de4b9
...
...
@@ -82,7 +82,7 @@ int main(int argc, char* argv[]) {
return
EXIT_FAILURE
;
}
catch
(
const
std
::
exception
&
e
)
{
std
::
cout
<<
argv
[
0
]
<<
" aborted..."
<<
std
::
endl
<<
"std
AbortE
xception:"
<<
std
::
endl
<<
e
.
what
()
<<
std
::
endl
;
std
::
cout
<<
argv
[
0
]
<<
" aborted..."
<<
std
::
endl
<<
"std
e
xception:"
<<
std
::
endl
<<
e
.
what
()
<<
std
::
endl
;
return
EXIT_FAILURE
;
}
catch
(...)
{
...
...
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