| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM\Tools\Exception; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use MailPoetVendor\Doctrine\ORM\Exception\ORMException; |
| 6 | use MailPoetVendor\Doctrine\ORM\Exception\SchemaToolException; |
| 7 | final class NotSupported extends ORMException implements SchemaToolException |
| 8 | { |
| 9 | public static function create() : self |
| 10 | { |
| 11 | return new self('This behaviour is (currently) not supported by Doctrine 2'); |
| 12 | } |
| 13 | } |
| 14 |