ConnectionException.php
2 years ago
ConnectionLost.php
2 years ago
ConstraintViolationException.php
2 years ago
DatabaseDoesNotExist.php
2 years ago
DatabaseObjectExistsException.php
2 years ago
DatabaseObjectNotFoundException.php
2 years ago
DatabaseRequired.php
2 years ago
DeadlockException.php
2 years ago
DriverException.php
2 years ago
ForeignKeyConstraintViolationException.php
2 years ago
InvalidArgumentException.php
2 years ago
InvalidFieldNameException.php
2 years ago
InvalidLockMode.php
2 years ago
LockWaitTimeoutException.php
2 years ago
MalformedDsnException.php
2 years ago
NoKeyValue.php
2 years ago
NonUniqueFieldNameException.php
2 years ago
NotNullConstraintViolationException.php
2 years ago
ReadOnlyException.php
2 years ago
RetryableException.php
2 years ago
SchemaDoesNotExist.php
2 years ago
ServerException.php
2 years ago
SyntaxErrorException.php
2 years ago
TableExistsException.php
2 years ago
TableNotFoundException.php
2 years ago
TransactionRolledBack.php
9 months ago
UniqueConstraintViolationException.php
2 years ago
index.php
2 years ago
MalformedDsnException.php
12 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL\Exception; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use InvalidArgumentException; |
| 5 | class MalformedDsnException extends InvalidArgumentException |
| 6 | { |
| 7 | public static function new() : self |
| 8 | { |
| 9 | return new self('Malformed database connection URL'); |
| 10 | } |
| 11 | } |
| 12 |