Merge pull request #37324 from nextcloud/fix/mapper-exception

Allow to catch `IMapperException` by implementing `Throwable`
This commit is contained in:
Simon L 2023-04-18 00:10:44 +02:00 committed by GitHub
commit 5952a027c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,5 +29,5 @@ namespace OCP\AppFramework\Db;
/**
* @since 16.0.0
*/
interface IMapperException {
interface IMapperException extends \Throwable {
}