| Server IP : 68.178.247.200 / Your IP : 216.73.217.16 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/alt-php54/root/usr/share/pear/ezc/Archive/exceptions/ |
Upload File : |
<?php
/**
* File containing the ezcArchiveIoException class.
*
* @package Archive
* @version 1.4.1
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Exception thrown when an IO error occurs.
*
* @package Archive
* @version 1.4.1
*/
class ezcArchiveIoException extends ezcArchiveException
{
/**
* Constructs a new IO exception.
*
* @param string $message
*/
public function __construct( $message )
{
parent::__construct( $message );
}
}
?>