OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
ramsey
/
uuid
/
docs
/
reference
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:34 AM
rwxr-xr-x
📄
calculators.rst
6.92 KB
08/12/2024 10:34:32 AM
rw-r--r--
📄
exceptions.rst
2.83 KB
08/12/2024 10:34:32 AM
rw-r--r--
📄
fields-fieldsinterface.rst
363 bytes
08/12/2024 10:34:32 AM
rw-r--r--
📄
guid-fields.rst
263 bytes
08/12/2024 10:34:32 AM
rw-r--r--
📄
guid-guid.rst
510 bytes
08/12/2024 10:34:32 AM
rw-r--r--
📄
helper.rst
2.68 KB
08/12/2024 10:34:32 AM
rw-r--r--
📄
name-based-namespaces.rst
1.12 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
nonstandard-fields.rst
317 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
nonstandard-uuid.rst
562 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
nonstandard-uuidv6.rst
1.3 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-fieldsinterface.rst
2.35 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidinterface.rst
587 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv1.rst
608 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv2.rst
1.65 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv3.rst
311 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv4.rst
301 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv5.rst
313 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv6.rst
1012 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv7.rst
609 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
rfc4122-uuidv8.rst
301 bytes
08/12/2024 10:34:33 AM
rw-r--r--
📄
types.rst
2.45 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
uuid.rst
6.91 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
uuidfactoryinterface.rst
4.05 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
uuidinterface.rst
1.68 KB
08/12/2024 10:34:33 AM
rw-r--r--
📄
validators.rst
920 bytes
08/12/2024 10:34:33 AM
rw-r--r--
Editing: exceptions.rst
Close
.. _reference.exceptions: ========== Exceptions ========== All exceptions in the :php:ns:`Ramsey\\Uuid` namespace implement :php:interface:`Ramsey\\Uuid\\Exception\\UuidExceptionInterface`. This provides a base type you may use to catch any and all exceptions that originate from this library. .. php:namespace:: Ramsey\Uuid\Exception .. php:interface:: UuidExceptionInterface This is the interface all exceptions in ramsey/uuid must implement. .. php:exception:: BuilderNotFoundException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that no suitable UUID builder could be found. .. php:exception:: DateTimeException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that the PHP DateTime extension encountered an exception or error. .. php:exception:: DceSecurityException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate an exception occurred while dealing with DCE Security (version 2) UUIDs .. php:exception:: InvalidArgumentException Extends `InvalidArgumentException <https://www.php.net/invalidargumentexception>`_. Thrown to indicate that the argument received is not valid. .. php:exception:: InvalidBytesException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that the bytes being operated on are invalid in some way. .. php:exception:: InvalidUuidStringException Extends :php:exc:`Ramsey\\Uuid\\Exception\\InvalidArgumentException`. Thrown to indicate that the string received is not a valid UUID. .. php:exception:: NameException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that an error occurred while attempting to hash a namespace and name .. php:exception:: NodeException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that attempting to fetch or create a node ID encountered an error. .. php:exception:: RandomSourceException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that the source of random data encountered an error. .. php:exception:: TimeSourceException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate that the source of time encountered an error. .. php:exception:: UnableToBuildUuidException Extends `RuntimeException <https://www.php.net/runtimeexception>`_. Thrown to indicate a builder is unable to build a UUID. .. php:exception:: UnsupportedOperationException Extends `LogicException <https://www.php.net/logicexception>`_. Thrown to indicate that the requested operation is not supported.