PHP Class ezcWorkflowInvalidInputException, Workflow

Inheritance: extends ezcWorkflowExecutionException
Show file Open project: zetacomponents/workflow

Protected Properties

Property Type Description
$properties array(string=>mixed) Container to hold the properties

Public Methods

Method Description
__construct ( array $message ) Constructor.
__get ( string $propertyName ) : mixed Property read access.
__isset ( string $propertyName ) : boolean Property isset access.
__set ( string $propertyName, mixed $val ) Property write access.

Method Details

__construct() public method

Constructor.
public __construct ( array $message )
$message array

__get() public method

Property read access.
public __get ( string $propertyName ) : mixed
$propertyName string Name of the property.
return mixed Value of the property or null.

__isset() public method

Property isset access.
public __isset ( string $propertyName ) : boolean
$propertyName string Name of the property.
return boolean True is the property is set, otherwise false.

__set() public method

Property write access.
public __set ( string $propertyName, mixed $val )
$propertyName string Name of the property.
$val mixed The value for the property.

Property Details

$properties protected property

Container to hold the properties
protected array(string=>mixed) $properties
return array(string=>mixed)