ProxyException.php 349 B

123456789101112131415
  1. <?php
  2. namespace Doctrine\Common\Proxy\Exception;
  3. /**
  4. * Base exception interface for proxy exceptions.
  5. *
  6. * @link www.doctrine-project.org
  7. * @since 2.4
  8. * @author Marco Pivetta <ocramius@gmail.com>
  9. *
  10. * @deprecated The Doctrine\Common\Proxy component is deprecated, please use ocramius/proxy-manager instead.
  11. */
  12. interface ProxyException
  13. {
  14. }