aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Rest/JsonEncodingException.php
blob: e731ac352012fe59e148e09ee0f9d8796c118db6 (plain) (blame)
1
2
3
4
5
6
7
8
9
<?php

namespace MediaWiki\Rest;

class JsonEncodingException extends \RuntimeException {
	public function __construct( $message, $code ) {
		parent::__construct( "JSON encoding error: $message", $code );
	}
}