Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic-graph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Olivier Stasse
dynamic-graph
Commits
2b101e36
Commit
2b101e36
authored
14 years ago
by
Florent Lamiraux
Browse files
Options
Downloads
Patches
Plain Diff
Add message in exception
* src/signal/signal-caster.cpp.
parent
44a2163f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/signal/signal-caster.cpp
+6
-3
6 additions, 3 deletions
src/signal/signal-caster.cpp
with
6 additions
and
3 deletions
src/signal/signal-caster.cpp
+
6
−
3
View file @
2b101e36
...
...
@@ -50,7 +50,8 @@ void SignalCaster::disp(const any& object, ostream& os) {
functions_
.
find
(
type_name
);
if
(
it
==
functions_
.
end
()
)
throw
ExceptionSignal
(
ExceptionSignal
::
BAD_CAST
);
//TODO: throw "cast not registered" exception
throw
ExceptionSignal
(
ExceptionSignal
::
BAD_CAST
,
"bad cast"
);
//TODO: throw "cast not registered" exception
(
*
it
).
second
.
get
<
0
>
()(
object
,
os
);
// call display function (tuple index 0)
}
...
...
@@ -59,7 +60,8 @@ void SignalCaster::trace(const any& object, ostream& os) {
map
<
string
,
cast_functions_type
>::
iterator
it
=
functions_
.
find
(
type_name
);
if
(
it
==
functions_
.
end
()
)
throw
ExceptionSignal
(
ExceptionSignal
::
BAD_CAST
);;
//TODO: throw "cast not registered" exception
throw
ExceptionSignal
(
ExceptionSignal
::
BAD_CAST
,
"bad cast"
);;
//TODO: throw "cast not registered" exception
(
*
it
).
second
.
get
<
2
>
()(
object
,
os
);
// call trace function (tuple index 2)
}
...
...
@@ -68,7 +70,8 @@ any SignalCaster::cast(const type_info& type, istringstream& iss) {
map
<
string
,
cast_functions_type
>::
iterator
it
=
functions_
.
find
(
type_name
);
if
(
it
==
functions_
.
end
()
)
throw
ExceptionSignal
(
ExceptionSignal
::
BAD_CAST
);;
//TODO: throw "cast not registered" exception
throw
ExceptionSignal
(
ExceptionSignal
::
BAD_CAST
,
"bad cast"
);
//TODO: throw "cast not registered" exception
return
(
*
it
).
second
.
get
<
1
>
()(
iss
);
// call cast function (tuple index 1)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment