**[Michael Osipov](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=michael-o)** opened **[MSHARED-1142](https://issues.apache.org/jira/browse/MSHARED-1142?redirect=false)** and commented In many spots this is code: ``` throw new Exception( "Failed to run Maven: " + e.getMessage(), e ); ``` `e.getMessage()` is redundant because `e` is already passed to the new exception. It will duplicate the message. Zero benefit. We shall remove them. --- **Remote Links:** - [GitHub Pull Request #48 ](https://github.com/apache/maven-filtering/pull/48) - [GitHub Pull Request #54 ](https://github.com/apache/maven-invoker/pull/54) - [GitHub Pull Request #17 ](https://github.com/apache/maven-shared-io/pull/17) - [GitHub Pull Request #44 ](https://github.com/apache/maven-verifier/pull/44)