Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Uri / Exception / InvalidUriPartException.php
blob1d093a6907f4520dc98ad7ff6497cf40fe8747be
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Uri\Exception;
12 class InvalidUriPartException extends InvalidArgumentException
14 /**
15 * Part-specific error codes
17 * @var int
19 const INVALID_SCHEME = 1;
20 const INVALID_USER = 2;
21 const INVALID_PASSWORD = 4;
22 const INVALID_USERINFO = 6;
23 const INVALID_HOSTNAME = 8;
24 const INVALID_PORT = 16;
25 const INVALID_AUTHORITY = 30;
26 const INVALID_PATH = 32;
27 const INVALID_QUERY = 64;
28 const INVALID_FRAGMENT = 128;