Skip to content

Commit a01753e

Browse files
committed
fix exception
1 parent c643159 commit a01753e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solid/lib/Notifications/SolidPubSub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function send($path, $type) {
2323
try {
2424
$client->send("pub $path\n");
2525
} catch (\WebSocket\Exception $exception) {
26-
throw new Exception('Could not write to pubsub server', 502, $exception);
26+
throw new \Exception('Could not write to pubsub server', 502, $exception);
2727
}
2828
}
2929
}

0 commit comments

Comments
 (0)