for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ©[2016] SugarCRM Inc. Licensed by SugarCRM under the Apache 2.0 license.
*/
namespace SugarAPI\SDK\Exception\EntryPoint;
use SugarAPI\SDK\Exception\SDKException;
class EntryPointException extends SDKException {
protected $message = 'EntryPoint Exception [%s] occurred on EntryPoint %s: %s';
public function __construct($EntryPoint, $data){
parent::__construct(sprintf($this->message, get_called_class(), $EntryPoint, $data));
}