feeddbexception.php 202 B

12345678910111213
  1. <?php
  2. class FeedDBException extends FeedSubException
  3. {
  4. public $obj;
  5. function __construct($obj)
  6. {
  7. parent::__construct('Database insert failure');
  8. $this->obj = $obj;
  9. }
  10. }