summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/ReadOnlyException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/dbal/src/Exception/ReadOnlyException.php')
-rw-r--r--vendor/doctrine/dbal/src/Exception/ReadOnlyException.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/doctrine/dbal/src/Exception/ReadOnlyException.php b/vendor/doctrine/dbal/src/Exception/ReadOnlyException.php
new file mode 100644
index 0000000..73fa5b1
--- /dev/null
+++ b/vendor/doctrine/dbal/src/Exception/ReadOnlyException.php
@@ -0,0 +1,14 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Doctrine\DBAL\Exception;
6
7/**
8 * Exception for a write operation attempt on a read-only database element detected in the driver.
9 *
10 * @psalm-immutable
11 */
12class ReadOnlyException extends ServerException
13{
14}