Файл: concrete5.7.5.6/concrete/vendor/punic/punic/code/Exception.php
Строк: 92
<?php
namespace Punic;
/**
* An exception raised by and associated to Punic.
*/
class Exception extends Exception
{
/**
* Exception code for the PunicExceptionNotImplemented exception.
*
* @var int
*/
const NOT_IMPLEMENTED = 10000;
/**
* Exception code for the PunicExceptionInvalidLocale exception.
*
* @var int
*/
const INVALID_LOCALE = 10001;
/**
* Exception code for the PunicExceptionInvalidDataFile exception.
*
* @var int
*/
const INVALID_DATAFILE = 10002;
/**
* Exception code for the PunicExceptionDataFolderNotFound exception.
*
* @var int
*/
const DATA_FOLDER_NOT_FOUND = 10003;
/**
* Exception code for the PunicExceptionDataFileNotFound exception.
*
* @var int
*/
const DATA_FILE_NOT_FOUND = 10004;
/**
* Exception code for the PunicExceptionDataFileNotReadable exception.
*
* @var int
*/
const DATA_FILE_NOT_READABLE = 10005;
/**
* Exception code for the PunicExceptionBadDataFileContents exception.
*
* @var int
*/
const BAD_DATA_FILE_CONTENTS = 10006;
/**
* Exception code for the PunicExceptionBadArgumentType exception.
*
* @var int
*/
const BAD_ARGUMENT_TYPE = 10007;
/**
* Exception code for the PunicExceptionValueNotInList 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);
}
}