Overview

Namespaces

  • PHP
  • Saklient
    • Cloud
      • Enums
      • Errors
      • Models
      • Resources
    • Errors

Classes

  • ExceptionFactory

Exceptions

  • HttpBadGatewayException
  • HttpBadRequestException
  • HttpConflictException
  • HttpException
  • HttpExpectationFailedException
  • HttpFailedDependencyException
  • HttpForbiddenException
  • HttpGatewayTimeoutException
  • HttpGoneException
  • HttpHttpVersionNotSupportedException
  • HttpInsufficientStorageException
  • HttpInternalServerErrorException
  • HttpLengthRequiredException
  • HttpLockedException
  • HttpMethodNotAllowedException
  • HttpNotAcceptableException
  • HttpNotExtendedException
  • HttpNotFoundException
  • HttpNotImplementedException
  • HttpPaymentRequiredException
  • HttpPreconditionFailedException
  • HttpProxyAuthenticationRequiredException
  • HttpRequestedRangeNotSatisfiableException
  • HttpRequestEntityTooLargeException
  • HttpRequestTimeoutException
  • HttpRequestUriTooLongException
  • HttpServiceUnavailableException
  • HttpUnauthorizedException
  • HttpUnprocessableEntityException
  • HttpUnsupportedMediaTypeException
  • HttpUpgradeRequiredException
  • HttpVariantAlsoNegotiatesException
  • SaklientException
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Saklient\Errors;
 4: 
 5: require_once __DIR__ . "/../../Saklient/Errors/HttpException.php";
 6: use \Saklient\Errors\HttpException;
 7: require_once __DIR__ . "/../../Saklient/Util.php";
 8: use \Saklient\Util;
 9: 
10: /** サーバ内部エラーが発生しました。このエラーが繰り返し発生する場合は、メンテナンス情報、サポートサイトをご確認ください。 */
11: class HttpInternalServerErrorException extends HttpException {
12:     
13:     /**
14:      * @access public
15:      * @param int $status
16:      * @param string $code=null
17:      * @param string $message=""
18:      */
19:     public function __construct($status, $code=null, $message="")
20:     {
21:         parent::__construct($status, $code, $message == null || $message == "" ? "サーバ内部エラーが発生しました。このエラーが繰り返し発生する場合は、メンテナンス情報、サポートサイトをご確認ください。" : $message);
22:     }
23:     
24:     
25: 
26: }
27: 
28: 
API documentation generated by ApiGen 2.8.0