ACC SHELL

Path : /srv/www/vhosts/centrumlb/3rdparty/Nette/Application/UI/
File Upload :
Current File : /srv/www/vhosts/centrumlb/3rdparty/Nette/Application/UI/InvalidLinkException.php

<?php

/**
 * This file is part of the Nette Framework (http://nette.org)
 * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 * @package Nette\Application\UI
 */



/**
 * Link generation exception.
 *
 * @author     David Grudl
 * @package Nette\Application\UI
 */
class NInvalidLinkException extends Exception
{
	public function __construct($message = '', $code = 0, Exception $previous = NULL)
	{
		if (PHP_VERSION_ID < 50300) {
			$this->previous = $previous;
			parent::__construct($message, $code);
		} else {
			parent::__construct($message, $code, $previous);
		}
	}
}

ACC SHELL 2018