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/Util.php";
 6: use \Saklient\Util;
 7: 
 8: class SaklientException extends \Exception {
 9:     
10:     /**
11:      * @access public
12:      * @var string
13:      */
14:     public $code;
15:     
16:     /**
17:      * @access public
18:      * @param string $code=null
19:      * @param string $message=""
20:      */
21:     public function __construct($code=null, $message="")
22:     {
23:         parent::__construct($message);
24:         $this->code = $code;
25:     }
26:     
27:     
28: 
29: }
30: 
31: 
API documentation generated by ApiGen 2.8.0