Exceptions classes are nearly always value objects, and should in most cases by newable. Bug: T247862 Change-Id: I4faa8ec6ea8bc44086cfc8075b32d10eea61e9df
9 lines
193 B
PHP
9 lines
193 B
PHP
<?php
|
|
/**
|
|
* Exception representing a failure to serialize or unserialize a content object.
|
|
*
|
|
* @newable
|
|
* @ingroup Content
|
|
*/
|
|
class MWContentSerializationException extends MWException {
|
|
}
|