1<?php 2 3 4namespace ComboStrap; 5 6 7 8use Throwable; 9 10/** 11 * Class RuntimeException 12 * @package ComboStrap 13 * 14 * An exception thrown during test when the 15 * {@link LogUtility} level is higher than warning 16 * 17 * We can then test 18 * if we receive the wanted exception 19 */ 20class LogException extends \RuntimeException { 21 22 public function __construct($message = "", $code = 0, Throwable $previous = null) 23 { 24 parent::__construct($message, $code, $previous); 25 } 26 27 28} 29