blob: 4a18aa7d81f1910893fa44cb96d3c547809a7e21 (
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\WebAssembly\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);
}
}
|