/**
* A cacheable UnsupportedMediaTypeHttpException.
*/
class CacheableUnsupportedMediaTypeHttpException extends UnsupportedMediaTypeHttpException
implements CacheableDependencyInterface
{ use CacheableDependencyTrait;
/**
* {@inheritdoc}
*/
public function __construct(CacheableDependencyInterface
$cacheability,
$message = '', \Exception
$previous = NULL,
$code = 0
) { $this->
setCacheability($cacheability);
parent::
__construct($message,
$previous,
$code);
}}