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
{
//
}