You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuBusinessException.php 319B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 6/5/16
  6. * Time: 2:38 PM
  7. */
  8. namespace Luticate\Utils\Business;
  9. class LuBusinessException extends \Exception
  10. {
  11. public function __construct($message, $code, \Exception $previous = null)
  12. {
  13. parent::__construct($message, $code, $previous);
  14. }
  15. }