Source for file AmbiguousException.class.php

Documentation is available at AmbiguousException.class.php

  1. <?php
  2. /**
  3.  * R.E. DBObjects
  4.  *
  5.  * @author Takács Ákos (Rimelek), programmer [at] rimelek [dot] hu
  6.  * @copyright Copyright (C) 2010, Takács Ákos
  7.  * @version 2.1
  8.  * @package REDBObjects
  9.  */
  10.  
  11. /**
  12.  * AmbiguousException
  13.  *
  14.  * Akkor váltódik ki, ha értékadásnál egy tulajdonság több táblához is tartozhat.<br />
  15.  * Olyankor egy jelzősztringnek, és a táblanévnek meg kell előznie a mezőnevet. <br />
  16.  * <code>
  17.  * $this->mail = 'valami@ize.hu'; //hibás
  18.  * $this->T_users_mail = 'valami@ize.hu'; //helyes
  19.  * </code>
  20.  *
  21.  * @author Takács Ákos (Rimelek), programmer [at] rimelek [dot] hu
  22.  * @copyright Copyright (C) 2010, Takács Ákos
  23.  * @package REDBObjects
  24.  */
  25. class AmbiguousException extends Exception {
  26.     function __toString({
  27.         return __CLASS__ . ": [".$this->code."]: ".$this->message."\n".
  28.                 $this->getTraceAsString();
  29.     }
  30. ?>

Documentation generated on Fri, 02 Apr 2010 17:34:17 +0200 by phpDocumentor 1.4.1