*/ class SettingsException extends Exception { /** * Create a new write exception instance. * * @param string $m * @param \Exception $e * * @return void */ public function __construct(string $m, Exception $e) { parent::__construct($m, 0, $e); } }