Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SDK Exception #105

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Model/BVSEOSDK/BV.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,29 +167,29 @@ public function __construct($params = array())
$this->SEO = $this->spotlights;
break;
default:
throw new Exception('Invalid content_type value provided: '.$this->config['content_type']);
throw new \Exception('Invalid content_type value provided: '.$this->config['content_type']);
}
}
}

protected function validateParameters($params)
{
if (!is_array($params)) {
throw new Exception(
throw new \Exception(
'BV class constructor argument $params must be an array.'
);
}

// check to make sure we have the required parameters.
if (empty($params['bv_root_folder'])) {
throw new Exception(
throw new \Exception(
'BV class constructor argument $params is missing required bv_root_folder key. An '.
'array containing bv_root_folder (string) is expected.'
);
}

if (empty($params['subject_id'])) {
throw new Exception(
throw new \Exception(
'BV class constructor argument $params is missing required subject_id key. An '.
'array containing subject_id (string) is expected.'
);
Expand Down
2 changes: 1 addition & 1 deletion Model/BVSEOSDK/BVUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static function checkType($type, $typeType = 'ct')
foreach ($typeArray as $key => $value) {
$supportList[] = $key.'='.$value;
}
throw new Exception('Obtained not supported '.$typeName
throw new \Exception('Obtained not supported '.$typeName
.'. BV Class supports following '.$typeName.': '
.implode(', ', $supportList));
}
Expand Down
4 changes: 2 additions & 2 deletions Model/BVSEOSDK/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function __construct($params = array())
protected function validateParams($params)
{
if (!is_array($params)) {
throw new Exception('BV Base Class missing config array.');
throw new \Exception('BV Base Class missing config array.');
}
}

Expand Down Expand Up @@ -257,7 +257,7 @@ protected function _renderSEO($access_method)

try {
$payload = $this->_getFullSeoContents($access_method);
} catch (Exception $e) {
} catch (\Exception $e) {
$this->_setBuildMessage($e->getMessage());
}
}
Expand Down