You are here

RestfulServerConfigurationException.php in RESTful 7

File

exceptions/RestfulServerConfigurationException.php
View source
<?php

/**
 * @file
 * Contains \RestfulServerConfigurationException
 */
class RestfulServerConfigurationException extends \RestfulException {

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

  /**
   * {@inheritdoc}
   */
  protected $description = 'Server configuration error.';

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

}