You are here

MediaEntityNotSavedException.php in Gutenberg 8

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

File

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

namespace Drupal\gutenberg\Service;


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

  /**
   * {@inheritDoc}
   */
  protected $message = 'Media entity could not be saved.';

}

Classes

Namesort descending Description
MediaEntityNotSavedException Thrown if media entity couldn't be saved.