You are here

NotFoundException.php in RESTful 7.2

File

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

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

class NotFoundException extends RestfulException {

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

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

}

Classes

Namesort descending Description
NotFoundException