Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
monitoring
/
vendor
/
laminas
/
laminas-httphandlerrunner
/
src
/
Exception
/
File Content:
EmitterException.php
<?php declare (strict_types=1); namespace PleskMonitoring\Laminas\HttpHandlerRunner\Exception; use RuntimeException; use function sprintf; class EmitterException extends RuntimeException implements ExceptionInterface { public static function forHeadersSent(string $filename, int $line) : self { return new self(sprintf('Unable to emit response; headers already sent in %s:%d', $filename, $line)); } public static function forOutputSent() : self { return new self('Output has been emitted previously; cannot emit response'); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
EmitterException.php
570 bytes
0644
ExceptionInterface.php
182 bytes
0644
InvalidEmitterException.php
646 bytes
0644
N4ST4R_ID | Naxtarrr