*/ class WriteException extends SettingsException { /** * Create a new write exception instance. * * @param \Exception $e * * @return void */ public function __construct(Exception $e) { parent::__construct('Unable to write Cachet settings', $e); } }