# css-javascript-toolbox/11/framework/exceptions.inc.php

CSS &amp; JavaScript Toolbox, version 11. 45 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/11/code/framework/exceptions.inc.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/11/raw/framework/exceptions.inc.php
- Modified: 2020-10-30T11:39:50+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/css-javascript-toolbox/11/code/framework/exceptions.inc.php#L10-L20`.

```php
<?php
/**
* 
*/

/**
* 
* @version 6
*/
class CJTExceptionBase extends Exception {
	
	/**
	* put your comment there...
	* 
	*/
  public function __toString() {
  	return parent::__toString();
	}
	
} // End class.

class CJTPropertyNotFoundException extends CJTExceptionBase {
	
	/**
	* 
	*/
	const PROPERTY_NOT_FOUND_MESSAGE = 'Property not found';
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $property_name = null;
	
	/**
	* put your comment there...
	* 
	*/
  public function __construct($name) {
  	parent::__construct(self::PROPERTY_NOT_FOUND_MESSAGE);
  	$this->property_name = $name;
	}
	
} // End class.
```
