FeedException.php 279 B

12345678910111213
  1. <?php
  2. class FeedException extends Exception {
  3. public function __construct ($message) {
  4. parent::__construct ($message);
  5. }
  6. }
  7. class BadUrlException extends FeedException {
  8. public function __construct ($url) {
  9. parent::__construct ('`' . $url . '` is not a valid URL');
  10. }
  11. }