You are here

UserDeveloperConversionNoStorageFormatterFoundException.php in Apigee Edge 8

File

src/Exception/UserDeveloperConversionNoStorageFormatterFoundException.php
View source
<?php

/**
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301, USA.
 */
namespace Drupal\apigee_edge\Exception;

use Drupal\Core\Field\FieldDefinitionInterface;

/**
 * Thrown when no storage formatter found for a user field.
 */
class UserDeveloperConversionNoStorageFormatterFoundException extends UserDeveloperConversionException {

  /**
   * Type of field with no formatter available.
   *
   * @var \Drupal\Core\Field\FieldDefinitionInterface
   */
  protected $fieldDefinition;

  /**
   * UserDeveloperConversionNoStorageFormatterFoundException constructor.
   *
   * @param \Drupal\Core\Field\FieldDefinitionInterface $field_definition
   *   Field definition.
   * @param string $message
   *   Exception message.
   * @param int|null $code
   *   Error code.
   * @param \Throwable|null $previous
   *   Previous exception.
   */
  public function __construct(FieldDefinitionInterface $field_definition, string $message = 'No available storage formatter found for "@field_type" field type.', ?int $code = NULL, ?\Throwable $previous = NULL) {
    $message = strtr($message, [
      '@field_type' => $field_definition
        ->getType(),
    ]);
    $this->fieldDefinition = $field_definition;
    parent::__construct($message, $code, $previous);
  }

  /**
   * Returns the definition of the problematic field.
   *
   * @return \Drupal\Core\Field\FieldDefinitionInterface
   *   Defition of the field.
   */
  public function getFieldDefinition() : FieldDefinitionInterface {
    return $this->fieldDefinition;
  }

}

Classes

Namesort descending Description
UserDeveloperConversionNoStorageFormatterFoundException Thrown when no storage formatter found for a user field.