Overview

Namespaces

  • PHP
  • PhpOptions
    • Types

Classes

  • Arguments
  • Option
  • Options

Exceptions

  • InvalidArgumentException
  • LogicException
  • UserBadCallException
  • Overview
  • Namespace
  • Class
  • Tree
  • Todo
 1: <?php
 2: 
 3: /**
 4:  * PhpOptions
 5:  * @link https://github.com/masicek/PhpOptions
 6:  * @author Viktor Mašíček <viktor@masicek.net>
 7:  * @license "New" BSD License
 8:  */
 9: 
10: namespace PhpOptions;
11: 
12: /**
13:  * List of exceptions used in PhpOptions.
14:  *
15:  * @author Viktor Mašíček <viktor@masicek.net>
16:  */
17: 
18: 
19: /**
20:  * Exceptions made by programmer by wrong calling method.
21:  * In correct scrit shoul not occured.
22:  */
23: class InvalidArgumentException extends \Exception
24: {
25: }
26: 
27: 
28: /**
29:  * Exceptions made by programmer by wrong set of expected options together.
30:  * In correct scrit shoul not occured.
31:  */
32: class LogicException extends \Exception
33: {
34: }
35: 
36: 
37: /**
38:  * Exceptions made by user wrong using of script.
39:  */
40: class UserBadCallException extends \Exception
41: {
42: }
43: 
PhpOptions API documentation generated by ApiGen.
Generated using the TokenReflection library.