error_code = $error_code; parent::__construct( $message, $status_code ); } /** * Get error code * * @since 1.3.0 * * @return string */ final public function get_error_code() { return $this->error_code; } /** * Get error message * * @since 1.3.0 * * @return string */ final public function get_message() { return $this->getMessage(); } /** * Get error status code * * @since 1.3.0 * * @return int */ final public function get_status_code() { return $this->getCode(); } }