You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
class JoueurNotFoundException extends Exception {
|
|
public function errorMessage() {
|
|
//error message
|
|
$errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile()
|
|
.': <b>'.$this->getMessage().'</b> Joueur not found';
|
|
return $errorMsg;
|
|
}
|
|
} |