golden hour
/var/www/html/wp-content/plugins/the-events-calendar/common/src/Tribe/REST/Exceptions
⬆️ Go Up
Upload
File/Folder
Size
Actions
Exception.php
425 B
Del
OK
Edit: Exception.php
<?php /** * Class Tribe__REST__Exceptions__Exception */ class Tribe__REST__Exceptions__Exception extends Exception { /** * @var int */ protected $status; public function __construct( $message, $code, $status ) { $this->message = $message; $this->code = $code; $this->status = $status; } /** * Return the error status. * @return int */ public function getStatus() { return $this->status; } }
Save