for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SugarAPI\SDK\Exception;
class AuthenticationException extends SDKException{
protected $message = 'Authentication Exception occurred when attempting to Login to SugarCRM instance. Message: %s';
public function __construct($message) {
$message = sprintf($this->message,$message);
parent::__construct($message);
}