blob: c5ff3a4065d623905d3ba28091b6a6df9a8ed383 (
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);
}
}
|