/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
spatie
/
db-dumper
/
src
/
Exceptions
/
/home/techb158/ileadtechnology.com/vendor/spatie/db-dumper/src/Exceptions
mkdir
upload
Name
Size
Mode
Actions
CannotSetParameter.php
445
0644
edit
dl
rm
CannotStartDump.php
343
0644
edit
dl
rm
DumpFailed.php
905
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/spatie/db-dumper/src/Exceptions/DumpFailed.php
(905B)
<?php namespace Spatie\DbDumper\Exceptions; use Exception; use Symfony\Component\Process\Process; class DumpFailed extends Exception { /** * @param \Symfony\Component\Process\Process $process * * @return \Spatie\DbDumper\Exceptions\DumpFailed */ public static function processDidNotEndSuccessfully(Process $process) { return new static("The dump process failed with exitcode {$process->getExitCode()} : {$process->getExitCodeText()} : {$process->getErrorOutput()}"); } /** * @return \Spatie\DbDumper\Exceptions\DumpFailed */ public static function dumpfileWasNotCreated() { return new static('The dumpfile could not be created'); } /** * @return \Spatie\DbDumper\Exceptions\DumpFailed */ public static function dumpfileWasEmpty() { return new static('The created dumpfile is empty'); } }
Save
cmd:
run