/**
  * NotCounterCacheableException constructor.
  *
  * @author Morten Rugaard <*****@*****.**>
  *
  * @param  string   $message
  * @param  int  $code
  * @param  array    $headers
  * @param  bool  $report
  * @param  string   $severity
  */
 public function __construct($message = 'Model does not implement CounterCacheable', $code = 500, array $headers = [], $report = true, $severity = 'error')
 {
     parent::__construct($message, $code, $headers, $report, $severity);
 }
 /**
  * RelationNotFoundException constructor.
  *
  * @author Morten Rugaard <*****@*****.**>
  *
  * @param  string   $message
  * @param  int  $code
  * @param  array    $headers
  * @param  bool  $report
  * @param  string   $severity
  */
 public function __construct($message = 'Relation not found on model', $code = 500, array $headers = [], $report = true, $severity = 'error')
 {
     parent::__construct($message, $code, $headers, $report, $severity);
 }
 /**
  * NoEntitiesFoundException constructor.
  *
  * @author Morten Rugaard <*****@*****.**>
  *
  * @param  string   $message
  * @param  int  $code
  * @param  array    $headers
  * @param  bool  $report
  * @param  string   $severity
  */
 public function __construct($message = 'No entities found', $code = 500, array $headers = [], $report = true, $severity = 'error')
 {
     parent::__construct($message, $code, $headers, $report, $severity);
 }