File "IOException.php"

Full path: /home/argothem/www/organecyberpresse/plugins/auto/querypath/v3.0.0/lib/querypath/vendor/gravitypdf/querypath/src/IOException.php
File size: 405 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * @file
 *
 * General IO exception.
 */

namespace QueryPath;

/**
 * Indicates that an input/output exception has occurred.
 *
 * @ingroup querypath_core
 */
class IOException extends ParseException
{

	public static function initializeFromError($errno, $errstr, $errfile, $errline, $context = null)
	{
		$class = __CLASS__;
		throw new $class($errno, (int) $errstr, $errfile, $errline);
	}
}