for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acquia\LiftClient\Entity;
class Error extends Entity
{
/**
* Gets the 'code' parameter.
*
* @return string The error code
*/
public function getCode()
return $this->getEntityValue('code', '');
}
* Gets the 'message' parameter.
* @return string The error message
public function getMessage()
return $this->getEntityValue('message', '');