MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
persistentexception.class
Ir para a documentação deste ficheiro.
1
<?php
2
3
class
EPersistenceException
extends
EMioloException
4
{
5
public
function
__construct
($msg)
6
{
7
parent::__construct();
8
$this->message = $msg;
9
}
10
}
11
12
class
EPersistentManagerFactoryException
extends
EPersistenceException
13
{
14
public
function
__construct
($msg)
15
{
16
$msg =
"Error in PersistenManagerFactory: "
. $msg;
17
parent::__construct($msg);
18
}
19
}
20
21
class
EPersistentManagerException
extends
EPersistenceException
22
{
23
public
function
__construct
($msg)
24
{
25
$msg =
"Error in PersistenFactory: "
. $msg;
26
parent::__construct($msg);
27
}
28
}
29
30
?>
EMioloException
Definição
mexception.class:4
EPersistenceException
Definição
persistentexception.class:4
EPersistenceException\__construct
__construct($msg)
Definição
persistentexception.class:5
EPersistentManagerException
Definição
persistentexception.class:22
EPersistentManagerException\__construct
__construct($msg)
Definição
persistentexception.class:23
EPersistentManagerFactoryException
Definição
persistentexception.class:13
EPersistentManagerFactoryException\__construct
__construct($msg)
Definição
persistentexception.class:14
classes
persistence
persistentexception.class
Gerado por
1.10.0