Exception.php 333 B

123456789101112131415
  1. <?php
  2. namespace marienfressinaud\LibOpml;
  3. /**
  4. * A simple Exception class which represents any kind of OPML problem.
  5. * Message precises the current problem.
  6. *
  7. * @author Marien Fressinaud <dev@marienfressinaud.fr>
  8. * @link https://framagit.org/marienfressinaud/lib_opml
  9. * @license MIT
  10. */
  11. class Exception extends \Exception
  12. {
  13. }