# Bug Report <!-- First, thank you for reporting a bug. That takes time and we appreciate that! --> | Subject | Details | | :------------- | :--------------------| | Rector version | last dev-main | | Installed as | composer dependency | ## Minimal PHP Code Causing Issue See https://getrector.com/demo/d5bc7838-3225-4823-95ec-b5a42c11d009 ```php <?php namespace Domains\Calculator\Exceptions; use Exception; class EmailException extends Exception { public function __construct($message = 'Email not sent.', ...$args) { parent::__construct($message, ...$args); } } ``` ### Responsible rules * `RemoveParentDelegatingConstructorRector` ## Expected Behavior <!-- How should Rector change the code? Or should Rector skip it? -->