Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 385 Bytes

File metadata and controls

21 lines (14 loc) · 385 Bytes

Documentation / StreamException

StreamException

The StreamException is thrown when a stream related error occurs.

Synopsis

namespace Phrity\Net;

use RuntimeException;
use Throwable;

class StreamException extends RuntimeException
{
    // Constructor

    public function __construct(int $code, array $data = [], Throwable|null $previous = null)
}