Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../guzzlehttp/../././sebastian/lines-of-code/.././version/../../phpunit/../stripe/../markbaker/./../laminas/./laminas-diactoros/src/Exception
الملفات الموجودة في هذا الـ Path:
.
..
DeserializationException.php
ExceptionInterface.php
InvalidArgumentException.php
InvalidForwardedHeaderNameException.php
InvalidProxyAddressException.php
InvalidStreamPointerPositionException.php
RuntimeException.php
SerializationException.php
UnreadableStreamException.php
UnrecognizedProtocolVersionException.php
UnrewindableStreamException.php
UnseekableStreamException.php
UntellableStreamException.php
UnwritableStreamException.php
UploadedFileAlreadyMovedException.php
UploadedFileErrorException.php

مشاهدة ملف: UntellableStreamException.php

<?php

declare(strict_types=1);

namespace Laminas\Diactoros\Exception;

use RuntimeException;

class UntellableStreamException extends RuntimeException implements ExceptionInterface
{
    public static function dueToMissingResource(): self
    {
        return new self('No resource available; cannot tell position');
    }

    public static function dueToPhpError(): self
    {
        return new self('Error occurred during tell operation');
    }

    public static function forCallbackStream(): self
    {
        return new self('Callback streams cannot tell position');
    }
}