MIOLO20
Toggle main menu visibility
Página principal
Estruturas de dados
Estruturas de dados
Hierarquia de classes
Campos de dados
Tudo
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Funções
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variáveis
$
a
b
c
d
e
f
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Ficheiros
Lista de ficheiros
Globais
Tudo
$
_
a
c
d
e
f
g
i
l
m
o
p
r
s
u
Funções
Variáveis
$
_
c
e
f
l
m
o
p
s
Exemplos
•
Tudo
Estruturas de dados
Namespaces
Ficheiros
Funções
Variáveis
Carregando...
Procurando...
Nenhuma entrada encontrada
ConnectionException.php
Ir para a documentação deste ficheiro.
1
<?php
2
/*
3
* $Id: Exception.php 4628 2008-07-04 16:32:19Z romanb $
4
*
5
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16
*
17
* This software consists of voluntary contributions made by many individuals
18
* and is licensed under the LGPL. For more information, see
19
* <http://www.doctrine-project.org>.
20
*/
21
22
namespace
Doctrine\DBAL
;
23
33
class
ConnectionException
extends
DBALException
34
{
35
public
static
function
commitFailedRollbackOnly
()
36
{
37
return
new
self
(
"Transaction commit failed because the transaction has been marked for rollback only."
);
38
}
35
public
static
function
commitFailedRollbackOnly
() {
…
}
39
40
public
static
function
noActiveTransaction
()
41
{
42
return
new
self
(
"There is no active transaction."
);
43
}
40
public
static
function
noActiveTransaction
() {
…
}
44
45
public
static
function
savepointsNotSupported
()
46
{
47
return
new
self
(
"Savepoints are not supported by this driver."
);
48
}
45
public
static
function
savepointsNotSupported
() {
…
}
49
50
public
static
function
mayNotAlterNestedTransactionWithSavepointsInTransaction
()
51
{
52
return
new
self
(
"May not alter the nested transaction with savepoints behavior while a transaction is open."
);
53
}
50
public
static
function
mayNotAlterNestedTransactionWithSavepointsInTransaction
() {
…
}
54
}
33
class
ConnectionException
extends
DBALException
{
…
};
Doctrine\DBAL\ConnectionException
Definição
ConnectionException.php:34
Doctrine\DBAL\ConnectionException\mayNotAlterNestedTransactionWithSavepointsInTransaction
static mayNotAlterNestedTransactionWithSavepointsInTransaction()
Definição
ConnectionException.php:50
Doctrine\DBAL\ConnectionException\noActiveTransaction
static noActiveTransaction()
Definição
ConnectionException.php:40
Doctrine\DBAL\ConnectionException\commitFailedRollbackOnly
static commitFailedRollbackOnly()
Definição
ConnectionException.php:35
Doctrine\DBAL\ConnectionException\savepointsNotSupported
static savepointsNotSupported()
Definição
ConnectionException.php:45
Doctrine\DBAL\DBALException
Definição
DBALException.php:6
Doctrine\DBAL
Definição
Configuration.php:20
classes
extensions
doctrine-dbal
Doctrine
DBAL
ConnectionException.php
Gerado por
1.10.0