3v4l.org

run code in 500+ PHP versions simultaneously
<?php class BaseDeleteHandlingException extends \RuntimeException { public function __construct( string $message = 'Ups, something went wrong during deleting a resource, please try again.', string $flash = 'something_went_wrong_error', int $apiResponseCode = 500, int $code = 0, ?\Throwable $previous = null, ) { parent::__construct($message, $code, $previous); } } class DeleteHandlingException extends BaseDeleteHandlingException { public function __construct( string $message = 'Ups, something went wrong during deleting a resource, please try again.', string $flash = 'something_went_wrong_error', int $apiResponseCode = 500, int $code = 0, ?\Exception $previous = null, ) { parent::__construct($message, $code, $previous); } }
Output for 8.1.32 - 8.1.34, 8.2.0 - 8.2.31, 8.3.0 - 8.3.31, 8.4.1 - 8.4.22, 8.5.0 - 8.5.7

preferences:
50.65 ms | 861 KiB | 4 Q