master

laravel/framework

Last updated at: 29/12/2023 09:23

ManuallyFailedException.php

TLDR

This file contains the definition of the ManuallyFailedException class in the Illuminate\Queue namespace. It extends the RuntimeException class.

Classes

ManuallyFailedException

This class extends the RuntimeException class. It is used to represent exceptions that are manually thrown to indicate that a job has failed.

<?php

namespace Illuminate\Queue;

use RuntimeException;

class ManuallyFailedException extends RuntimeException
{
    //
}