Services_JSON_Error::Services_JSON_Error

Advertisement

Deprecated Deprecated

This method has been deprecated. Use Services_JSON_Error::__construct() instead.

Summery Summery

PHP4 constructor.

Syntax Syntax

Services_JSON_Error::Services_JSON_Error( $message = 'unknown error',  $code = null,  $mode = null,  $options = null,  $userinfo = null )

Source Source

File: wp-includes/class-json.php

		public function Services_JSON_Error( $message = 'unknown error', $code = null,
	                                     $mode = null, $options = null, $userinfo = null ) {
			_deprecated_constructor( 'Services_JSON_Error', '5.3.0', get_class( $this ) );
			self::__construct( $message, $code, $mode, $options, $userinfo );
		}

Advertisement

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.

See also See also

Advertisement

Leave a Reply