Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/voku/.././doctrine/dbal/src/Driver
الملفات الموجودة في هذا الـ Path:
.
..
API
AbstractDB2Driver.php
AbstractException.php
AbstractMySQLDriver.php
AbstractOracleDriver
AbstractOracleDriver.php
AbstractPostgreSQLDriver.php
AbstractSQLServerDriver
AbstractSQLServerDriver.php
AbstractSQLiteDriver
AbstractSQLiteDriver.php
Connection.php
Exception
Exception.php
FetchUtils.php
IBMDB2
Middleware
Middleware.php
Mysqli
OCI8
PDO
PgSQL
Result.php
SQLSrv
SQLite3
ServerInfoAwareConnection.php
Statement.php

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

<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver;

use Throwable;

/** @psalm-immutable */
interface Exception extends Throwable
{
    /**
     * Returns the SQLSTATE the driver was in at the time the error occurred.
     *
     * Returns null if the driver does not provide a SQLSTATE for the error occurred.
     *
     * @return string|null
     */
    public function getSQLState();
}