2022-10-31 12:29:10 -04:00
|
|
|
<?php
|
|
|
|
|
|
2024-03-12 22:39:16 -04:00
|
|
|
namespace App\Exceptions;
|
2022-10-31 12:29:10 -04:00
|
|
|
|
2025-09-08 13:12:33 -04:00
|
|
|
use App\Exceptions\Solutions\ManifestDoesNotExistSolution;
|
2025-09-24 13:34:19 +02:00
|
|
|
use Exception;
|
2022-10-31 12:29:10 -04:00
|
|
|
use Spatie\Ignition\Contracts\ProvidesSolution;
|
2025-09-24 13:34:19 +02:00
|
|
|
use Spatie\Ignition\Contracts\Solution;
|
2022-10-31 12:29:10 -04:00
|
|
|
|
2025-09-08 13:12:33 -04:00
|
|
|
class ManifestDoesNotExistException extends Exception implements ProvidesSolution
|
2022-10-31 12:29:10 -04:00
|
|
|
{
|
|
|
|
|
public function getSolution(): Solution
|
|
|
|
|
{
|
2025-09-08 13:12:33 -04:00
|
|
|
return new ManifestDoesNotExistSolution();
|
2022-10-31 12:29:10 -04:00
|
|
|
}
|
|
|
|
|
}
|