1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17:
<?php
namespace AffiliconApiClient\Exceptions;
class AuthenticationFailed extends ClientExceptions
{
/**
* AuthenticationFailed constructor.
* @param string $message
* @param integer $code
*/
public function __construct($message, $code)
{
parent::__construct("authentication failed: " . $message, $code);
}
}