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