Skip to content

Commit

Permalink
Tweak the code to avoid fabbot false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Apr 12, 2020
1 parent fc5be36 commit 3634991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Definition/BaseNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ final public function finalize($value)
} catch (Exception $e) {
throw $e;
} catch (\Exception $e) {
throw new InvalidConfigurationException(sprintf('Invalid configuration for path "%s": %s.', $this->getPath(), $e->getMessage()), $e->getCode(), $e);
throw new InvalidConfigurationException(sprintf('Invalid configuration for path "%s": '.$e->getMessage(), $this->getPath()), $e->getCode(), $e);
}
}

Expand Down

0 comments on commit 3634991

Please sign in to comment.