?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/jetpack-boost/jetpack_vendor/automattic/jetpack-schema/src/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/jetpack-boost/jetpack_vendor/automattic/jetpack-schema

?? Viewing: class-schema-error.php

<?php

namespace Automattic\Jetpack\Schema;

class Schema_Error extends \RuntimeException {
	private $value;
	private $context;

	public function __construct( $message, $value, $context = null ) {
		$this->value   = $value;
		$this->context = $context;
		parent::__construct( $message );
	}

	public function get_value() {
		return $this->value;
	}

	public function get_context() {
		return $this->context;
	}
}


??

??