# shiftcontroller/4.9.66/hc3/exceptionarray.php

ShiftController Employee Shift Scheduling, version 4.9.66. 15 lines.

- Page: https://pluginprobe.com/plugins/shiftcontroller/4.9.66/code/hc3/exceptionarray.php
- Raw: https://pluginprobe.com/plugins/shiftcontroller/4.9.66/raw/hc3/exceptionarray.php
- Modified: 2018-04-02T15:13:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/shiftcontroller/4.9.66/code/hc3/exceptionarray.php#L10-L20`.

```php
<?php if (! defined('ABSPATH')) exit; // Exit if accessed directly
class HC3_ExceptionArray extends Exception
{
	protected $errors = array();

	public function __construct( $errors )
	{
		$this->errors = $errors;
	}

	public function getErrors()
	{
		return $this->errors;
	}
}
```
