From 7caed29cb122d33733a724ffa7c23285f84e1dd6 Mon Sep 17 00:00:00 2001 From: v4hn Date: Sat, 24 Feb 2018 01:34:32 +0100 Subject: [PATCH] elaborate runtime_error in InterfaceState --- core/src/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/storage.cpp b/core/src/storage.cpp index aacd9959..360ceb21 100644 --- a/core/src/storage.cpp +++ b/core/src/storage.cpp @@ -64,7 +64,7 @@ Interface::iterator Interface::add(InterfaceState &&state, SolutionBase* incomin if (!state.incomingTrajectories().empty() || !state.outgoingTrajectories().empty()) throw std::runtime_error("expecting empty incoming/outgoing trajectories"); if (!state.scene()) - throw std::runtime_error("expecting valid planning scene"); + throw std::runtime_error("expecting valid planning scene in InterfaceState"); // move state to a list node std::list container;