master

laravel/framework

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

BroadcastException.php

TLDR

This file defines the BroadcastException class, which extends the RuntimeException class.

Classes

BroadcastException

This class extends the RuntimeException class. It is used to throw exceptions related to broadcasting operations.


<?php

namespace Illuminate\Broadcasting;

use RuntimeException;

class BroadcastException extends RuntimeException
{
    //
}