/home/smartonegroup/www/system/vendor/spatie/ray/src/Exceptions/StopExecutionRequested.php
<?php

namespace Spatie\Ray\Exceptions;

use Exception;

class StopExecutionRequested extends Exception
{
    public static function make(): self
    {
        return new static("This exception is thrown because you requested to stop the execution in Ray.");
    }
}