You are here

FloodException.php in RESTful 7.2

File

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

/**
 * @file
 * Contains \Drupal\restful\Exception\FloodException.
 */
namespace Drupal\restful\Exception;

class FloodException extends RestfulException {

  /**
   * Defines the HTTP error code.
   *
   * @var int
   */
  protected $code = 429;

  /**
   * {@inheritdoc}
   */
  protected $instance = 'help/restful/problem-instances-flood';

}

Classes

Namesort descending Description
FloodException