Skip to content
Snippets Groups Projects
Commit c294a5db authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

[minor] throw exception is problem is not of the correct type.

parent 5f7bad45
No related branches found
No related tags found
No related merge requests found
Pipeline #13337 failed
......@@ -38,6 +38,7 @@ namespace hpp {
static Ptr_t create (const core::ProblemConstPtr_t& problem) {
ProblemConstPtr_t p (HPP_DYNAMIC_PTR_CAST(const Problem, problem));
if (!p) throw std::invalid_argument("This is not a manipulation problem.");
return Ptr_t (new EnforceTransitionSemantic (p));
}
......
......@@ -50,7 +50,8 @@ namespace hpp {
typename SplineGradientBased<_PB, _SO>::Ptr_t SplineGradientBased<_PB, _SO>::createFromCore
(const core::ProblemConstPtr_t& problem)
{
assert(HPP_DYNAMIC_PTR_CAST(const Problem, problem));
if (!HPP_DYNAMIC_PTR_CAST(const Problem, problem))
throw std::invalid_argument("This is not a manipulation problem.");
return create (HPP_STATIC_PTR_CAST(const Problem, problem));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment