-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileNotFoundException.php
44 lines (41 loc) · 1.25 KB
/
FileNotFoundException.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
namespace Tayron\exceptions;
use Tayron\exceptions\Exception;
/**
* Classe de Exceção que gera log das exceções lançadas
*
* @author Tayron Miranda <dev@tayron.com.br>
*/
final class FileNotFoundException extends Exception
{
/**
* FileNotFoundException::__construct
*
* Recebe os parametos a serem disparados na exceção
*
* @param string $pathArquivo Local onde o arquivo deveria estar
* @param string $message Mensagem personalizada de erro
*
* @return void
*/
public function __construct($pathArquivo, $message = null)
{
parent::__construct($this->formatMessage($pathArquivo, $message));
}
/**
* FileNotFoundException::formatMessage
*
* Formata e retorna a mensagem de erro
*
* @param string $pathArquivo Local onde o arquivo deveria estar
* @param string $message Mensagem personalizada
*
* @return string - Mensagem de erro a ser exibida para o usuário
*/
private function formatMessage($pathArquivo, $message = null)
{
$showMessage = ($message) ? $message
: 'Arquivo não encontrado em: <strong>%s</strong>';
return sprintf($showMessage, $pathArquivo);
}
}