Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../modules/./../plugins/ion-rangeslider/../datatables-rowgroup/./../sweetalert2/../jqvmap/../jquery-knob/./../ion-rangeslider/../raphael/../../../vendor/async-aws/../monolog/../composer/../phpunit/../sebastian/../sebastian/.././ramsey/uuid/src/Exception
الملفات الموجودة في هذا الـ Path:
.
..
BuilderNotFoundException.php
DateTimeException.php
DceSecurityException.php
InvalidArgumentException.php
InvalidBytesException.php
InvalidUuidStringException.php
NameException.php
NodeException.php
RandomSourceException.php
TimeSourceException.php
UnableToBuildUuidException.php
UnsupportedOperationException.php
UuidExceptionInterface.php

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

<?php

/**
 * This file is part of the ramsey/uuid library
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
 * @license http://opensource.org/licenses/MIT MIT
 */

declare(strict_types=1);

namespace Ramsey\Uuid\Exception;

use RuntimeException as PhpRuntimeException;

/**
 * Thrown to indicate that the source of random data encountered an error
 *
 * This exception is used mostly to indicate that random_bytes() or random_int()
 * threw an exception. However, it may be used for other sources of random data.
 */
class RandomSourceException extends PhpRuntimeException implements UuidExceptionInterface
{
}