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

Allow to catch `IMapperException` by implementing `Throwable`
pull/37778/head
Simon L 2023-04-18 00:10:44 +07:00 committed by GitHub
commit 5952a027c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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