MediaException.php: add ERR_BAD_HANDLER

This commit is contained in:
Zankaria 2025-03-28 15:01:00 +01:00
parent 316ea636b0
commit 991ddc9001

View file

@ -27,4 +27,8 @@ class MediaException extends \RuntimeException {
* Bad media type (mime) supplied to the handler.
*/
public const ERR_BAD_MEDIA_TYPE = 5;
/**
* Unsupported handler.
*/
public const ERR_BAD_HANDLER = 6;
}