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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
<?php
namespace Punic;
/**
* An exception raised by and associated to Punic.
*/
class Exception extends \Exception
{
/**
* Exception code for the \Punic\Exception\NotImplemented exception.
*
* @var int
*/
const NOT_IMPLEMENTED = 10000;
/**
* Exception code for the \Punic\Exception\InvalidLocale exception.
*
* @var int
*/
const INVALID_LOCALE = 10001;
/**
* Exception code for the \Punic\Exception\InvalidDataFile exception.
*
* @var int
*/
const INVALID_DATAFILE = 10002;
/**
* Exception code for the \Punic\Exception\DataFolderNotFound exception.
*
* @var int
*/
const DATA_FOLDER_NOT_FOUND = 10003;
/**
* Exception code for the \Punic\Exception\DataFileNotFound exception.
*
* @var int
*/
const DATA_FILE_NOT_FOUND = 10004;
/**
* Exception code for the \Punic\Exception\DataFileNotReadable exception.
*
* @var int
*/
const DATA_FILE_NOT_READABLE = 10005;
/**
* Exception code for the \Punic\Exception\BadDataFileContents exception.
*
* @var int
*/
const BAD_DATA_FILE_CONTENTS = 10006;
/**
* Exception code for the \Punic\Exception\BadArgumentType exception.
*
* @var int
*/
const BAD_ARGUMENT_TYPE = 10007;
/**
* Exception code for the \Punic\Exception\ValueNotInList exception.
*
* @var int
*/
const VALUE_NOT_IN_LIST = 10008;
/**
* Initializes the instance.
*
* @param string $message The exception message
* @param int $code The exception code
* @param \Exception $previous The previous exception used for the exception chaining
*/
public function __construct($message, $code = null, $previous = null)
{
parent::__construct($message, $code ? $code : 1, $previous);
}
}