blob: 92991e2f00da90cb24a3ce95c12a6b5968132f03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Execution;
use RuntimeException;
use Throwable;
final class StackOverflowException extends RuntimeException
{
public function __construct(
string $message = 'Stack overflow',
int $code = 0,
Throwable $previous = null,
) {
parent::__construct($message, $code, $previous);
}
}
|