17 lines
259 B
PHP
17 lines
259 B
PHP
<?php
|
|
|
|
|
|
namespace crmeb\exceptions;
|
|
|
|
|
|
use Throwable;
|
|
|
|
class ErpException extends \RuntimeException
|
|
{
|
|
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|