summaryrefslogtreecommitdiff
path: root/src/Errors/AppException.php
blob: 2a554c7da0839306a4c429dc4977f97fbd1eb80f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace App\Errors;

class AppException extends Exception
{
  public function __construct(
    ErrorCode $errorCode,
    string $message,
    int $httpCode,
    private array $additionalData = []
  )
  {
    parent::__construct($errorCode, $message, $httpCode);
  }

  public function getAdditionalData(): array
  {
    return $this->additionalData;
  }
}