Merge "Selenium: replace UserLoginPage with BlankPage where possible"
[lhc/web/wiklou.git] / includes / Rest / JsonEncodingException.php
1 <?php
2
3 namespace MediaWiki\Rest;
4
5 class JsonEncodingException extends \RuntimeException {
6 public function __construct( $message, $code ) {
7 parent::__construct( "JSON encoding error: $message", $code );
8 }
9 }