Current File : /home/digitaw/www/wp-content/plugins/event-tickets/common/src/Tribe/REST/Exceptions/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;
	}
}