| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/nextcloud/3rdparty/punic/punic/code/ |
Upload File : |
<?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);
}
}