1
0
mirror of synced 2025-01-29 19:41:45 +03:00

Changed DQLException, InvalidKeyException and InvalidTypeException to inherit Doctrine_Exception

This commit is contained in:
elliot 2006-09-20 09:26:26 +00:00
parent ce84fe3811
commit 89e1215296

View File

@ -1,6 +1,6 @@
<?php
class InvalidKeyException extends Exception { }
class InvalidTypeException extends Exception { }
class Doctrine_Exception extends Exception { }
class DQLException extends Doctrine_Exception { }
<?php
class Doctrine_Exception extends Exception { }
class DQLException extends Doctrine_Exception { }
class InvalidKeyException extends Doctrine_Exception { }
class InvalidTypeException extends Doctrine_Exception { }