Added \ncc\Exceptions > InvalidBuildConfigurationException

https://git.n64.cc/nosial/ncc/-/issues/4
This commit is contained in:
Netkas 2022-12-18 00:24:28 -05:00
parent 67391c0bde
commit 79cec40f23

View file

@ -0,0 +1,20 @@
<?php
namespace ncc\Exceptions;
use Exception;
use ncc\Abstracts\ExceptionCodes;
use Throwable;
class InvalidBuildConfigurationException extends Exception
{
/**
* @param string $message
* @param Throwable|null $previous
*/
public function __construct(string $message = "", ?Throwable $previous = null)
{
parent::__construct($message, ExceptionCodes::InvalidBuildConfigurationException, $previous);
$this->message = $message;
}
}