blob: 3b2d51bc5ce0b5aa18a0bd75f3152b7162ed7a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Exception;
/**
* This interface should be implemented by all exceptions in the Repository
* namespace.
*/
interface RepositoryException extends ORMException
{
}
|