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