Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
17e9fa58
Commit
17e9fa58
authored
Apr 25, 2019
by
Piotr Gawron
Browse files
proper exception is thrown
parent
70280881
Pipeline
#9962
passed with stage
in 10 minutes and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
converter-sbml/src/main/java/lcsb/mapviewer/converter/model/sbml/reaction/SbmlReactionParser.java
View file @
17e9fa58
...
...
@@ -216,8 +216,9 @@ public class SbmlReactionParser extends SbmlBioEntityParser {
}
getMinervaModel
().
addReaction
(
reactionWithLayout
);
}
catch
(
InvalidArgumentException
e
)
{
throw
new
InvalidInputDataExecption
(
e
);
}
catch
(
Exception
e
)
{
throw
new
InvalidInputDataExecption
(
new
ElementUtils
().
getElementTag
(
source
)
+
"Problem with parsing reaction layout"
,
e
);
}
}
Set
<
Reaction
>
elementsToRemove
=
new
HashSet
<>();
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment