diff options
Diffstat (limited to 'includes/Storage/BadBlobException.php')
-rw-r--r-- | includes/Storage/BadBlobException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/includes/Storage/BadBlobException.php b/includes/Storage/BadBlobException.php new file mode 100644 index 000000000000..e32dc33489ea --- /dev/null +++ b/includes/Storage/BadBlobException.php @@ -0,0 +1,11 @@ +<?php + +namespace MediaWiki\Storage; + +/** + * Exception thrown when a blob has the "bad" content address schema, or has + * "error" in its old_flags, meaning it is permanently missing. + */ +class BadBlobException extends BlobAccessException { + +} |