4 * This error is throw when system fails to load owner company
7 * @http://www.projectpier.org/
9 class OwnerCompanyDnxError
extends Error
{
12 * Construct the OwnerCompanyDnxError
14 * @param string $message
15 * @return OwnerCompanyDnxError
17 function __construct($message = null) {
18 if(is_null($message)) $message = 'Owner company is not defined';
19 parent
::__construct($message);
22 } // OwnerCompanyDnxError