HEX
Server: LiteSpeed
System: Linux d8 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: wbwebdes (3015)
PHP: 8.1.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wbwebdes/domains/files.wb-cloud.nl/public_html/3rdparty/punic/punic/src/Exception.php
<?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;

    /**
     * Exception code for the \Punic\Exception\InvalidOverride exception.
     *
     * @var int
     */
    const INVALID_OVERRIDE = 10009;

    /**
     * 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);
    }
}