You are here

MediaTypeNotFoundException.php in Gutenberg 8

Same filename and directory in other branches
  1. 8.2 src/Service/MediaTypeNotFoundException.php

File

src/Service/MediaTypeNotFoundException.php
View source
<?php

namespace Drupal\gutenberg\Service;


/**
 * Thrown if media type entity couldn't be found.
 *
 * @package Drupal\gutenberg\Service
 */
class MediaTypeNotFoundException extends \Exception {

  /**
   * {@inheritDoc}
   */
  protected $message = 'Media type not found.';

}

Classes

Namesort descending Description
MediaTypeNotFoundException Thrown if media type entity couldn't be found.