You are here

ExceptionThrower.php in Commerce Shipping 8.2

File

tests/modules/commerce_shipping_test/src/Plugin/Commerce/ShippingMethod/ExceptionThrower.php
View source
<?php

namespace Drupal\commerce_shipping_test\Plugin\Commerce\ShippingMethod;

use Drupal\commerce_shipping\Entity\ShipmentInterface;
use Drupal\commerce_shipping\Plugin\Commerce\ShippingMethod\ShippingMethodBase;

/**
 * Provides a shipping method that throws an exception when calculating rates.
 *
 * @CommerceShippingMethod(
 *   id = "exception_thrower",
 *   label = @Translation("Exception Thrower"),
 * )
 */
class ExceptionThrower extends ShippingMethodBase {

  /**
   * {@inheritdoc}
   */
  public function calculateRates(ShipmentInterface $shipment) {
    throw new \Exception('Simulate a shipping plugin that throws an exception when calculating rates.');
  }

}

Classes

Namesort descending Description
ExceptionThrower Provides a shipping method that throws an exception when calculating rates.