Server IP : 184.154.167.98 / Your IP : 18.191.234.200 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/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); } }