HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cloudlinux/alt-php54/root/usr/share/pear/Net/DNS2/Exception.php
<?php

/**
 * DNS Library for handling lookups and updates. 
 *
 * Copyright (c) 2020, Mike Pultz <mike@mikepultz.com>. All rights reserved.
 *
 * See LICENSE for more details.
 *
 * @category  Networking
 * @package   Net_DNS2
 * @author    Mike Pultz <mike@mikepultz.com>
 * @copyright 2020 Mike Pultz <mike@mikepultz.com>
 * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
 * @link      https://netdns2.com/
 * @since     File available since Release 0.6.0
 *
 */

/**
 * Exception handler used by Net_DNS2
 * 
 */
class Net_DNS2_Exception extends Exception
{
    private $_request;
    private $_response;

    /**
     * Constructor - overload the constructor so we can pass in the request
     *               and response object (when it's available)
     *
     * @param string $message  the exception message
     * @param int    $code     the exception code
     * @param object $previous the previous Exception object
     * @param object $request  the Net_DNS2_Packet_Request object for this request
     * @param object $response the Net_DNS2_Packet_Response object for this request
     *
     * @access public
     *
     */
    public function __construct(
        $message = '', 
        $code = 0, 
        $previous = null, 
        Net_DNS2_Packet_Request $request = null,
        Net_DNS2_Packet_Response $response = null
    ) {
        //
        // store the request/response objects (if passed)
        //
        $this->_request = $request;
        $this->_response = $response;

        //
        // call the parent constructor
        //
        // the "previous" argument was added in PHP 5.3.0
        //
        //      https://code.google.com/p/netdns2/issues/detail?id=25
        //
        if (version_compare(PHP_VERSION, '5.3.0', '>=') == true) {

            parent::__construct($message, $code, $previous);
        } else {

            parent::__construct($message, $code);
        }
    }

    /**
     * returns the Net_DNS2_Packet_Request object (if available)
     *
     * @return Net_DNS2_Packet_Request object
     * @access public
     * @since  function available since release 1.3.1
     *
     */
    public function getRequest()
    {
        return $this->_request;
    }

    /**
     * returns the Net_DNS2_Packet_Response object (if available)
     *
     * @return Net_DNS2_Packet_Response object
     * @access public
     * @since  function available since release 1.3.1
     *
     */
    public function getResponse()
    {
        return $this->_response;
    }
}