We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ed37ac commit c6cfdacCopy full SHA for c6cfdac
src/Commands/StartSsr.php
@@ -44,6 +44,7 @@ public function handle(): int
44
$this->info(trim($data));
45
} else {
46
$this->error(trim($data));
47
+ report(new SsrException($data));
48
}
49
50
src/Ssr/SsrException.php
@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Inertia\Ssr;
4
5
+use Exception;
6
7
+class SsrException extends Exception
8
+{
9
+}
0 commit comments