public function UnprocessableHttpEntityException::getViolations in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/src/Exception/UnprocessableHttpEntityException.php \Drupal\jsonapi\Exception\UnprocessableHttpEntityException::getViolations()
Gets the constraint violations associated with this exception.
Return value
\Drupal\Core\Entity\EntityConstraintViolationListInterface The constraint violations.
File
- core/
modules/ jsonapi/ src/ Exception/ UnprocessableHttpEntityException.php, line 55
Class
- UnprocessableHttpEntityException
- A class to represent a 422 - Unprocessable Entity Exception.
Namespace
Drupal\jsonapi\ExceptionCode
public function getViolations() {
return $this->violations;
}