Lines Matching defs:LogicException

15 use Symfony\Component\Process\Exception\LogicException;
141 * @throws LogicException When proc_open is not installed
146 throw new LogicException('The Process class relies on proc_open, which is not available on your PHP installation.');
190 * @throws LogicException When proc_open is not installed
246 * @throws LogicException In case a callback is provided and output has been disabled
295 * @throws LogicException In case a callback is provided and output has been disabled
413 * @throws LogicException When process is not yet started
424 throw new LogicException('Pass the callback to the "Process::start" method or call enableOutput to use a callback with "Process::wait".');
455 * @throws LogicException When process is not yet started
465 throw new LogicException('Pass the callback to the "Process::start" method or call enableOutput to use a callback with "Process::waitUntil".');
510 * @throws LogicException In case the process is not running
527 * @throws LogicException if an idle timeout is set
535 throw new LogicException('Output cannot be disabled while an idle timeout is set.');
576 * @throws LogicException in case the output has been disabled
577 * @throws LogicException In case the process is not started
598 * @throws LogicException in case the output has been disabled
599 * @throws LogicException In case the process is not started
620 * @throws LogicException in case the output has been disabled
621 * @throws LogicException In case the process is not started
692 * @throws LogicException in case the output has been disabled
693 * @throws LogicException In case the process is not started
715 * @throws LogicException in case the output has been disabled
716 * @throws LogicException In case the process is not started
795 * @throws LogicException In case the process is not terminated
812 * @throws LogicException In case the process is not terminated
832 * @throws LogicException In case the process is not terminated
848 * @throws LogicException In case the process is not terminated
1035 * @throws LogicException if the output is disabled
1041 throw new LogicException('Idle timeout cannot be set while the output is disabled.');
1174 * @throws LogicException In case the process is running
1179 throw new LogicException('Input cannot be set while the process is running.');
1215 * @throws LogicException in case process is not started
1220 throw new LogicException('Start time is only available after process start.');
1246 throw new LogicException(sprintf('Invalid option "%s" passed to "%s()". Supported options are "%s".', $key, __METHOD__, implode('", "', $existingOptions)));
1386 * @throws LogicException in case output has been disabled or process is not started
1391 throw new LogicException('Output has been disabled.');
1494 * @throws LogicException In case the process is not running
1502 throw new LogicException('Cannot send signal on a non running process.');
1589 * Ensures the process is running or terminated, throws a LogicException if the process has a not started.
1591 * @throws LogicException if the process has not run
1596 throw new LogicException(sprintf('Process must be started before calling "%s()".', $functionName));
1601 * Ensures the process is terminated, throws a LogicException if the process has a status different than "terminated".
1603 * @throws LogicException if the process is not yet terminated
1608 throw new LogicException(sprintf('Process must be terminated before calling "%s()".', $functionName));