Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Thylane ECHARDOUR
Yearbook des diplômés
Commits
1952ae94
Commit
1952ae94
authored
Oct 29, 2021
by
Baptiste DOUXAMI
Browse files
Upload New File
parent
027372b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
modele/SalonException.php
0 → 100644
View file @
1952ae94
<?php
// Classe generale de definition d'exception
class
SalonException
extends
Exception
{
public
function
__construct
(
$chaine
){
parent
::
__construct
(
$chaine
);
}
}
// Exception relative à un probleme de connexion
class
ConnexionException
extends
SalonException
{
public
function
__construct
(
$chaine
){
parent
::
__construct
(
$chaine
);
}
}
// Exception relative à un probleme SQL
class
SQLException
extends
SalonException
{
public
function
__construct
(
$chaine
){
parent
::
__construct
(
$chaine
);
}
}
?>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment