Respect parent setting, handling exceptions (#10017)
parent
a5ee2269ef
commit
e07d2a7bef
|
@ -419,7 +419,10 @@ class Application extends BaseApplication
|
||||||
} catch (\InvalidArgumentException $e) {
|
} catch (\InvalidArgumentException $e) {
|
||||||
if ($required) {
|
if ($required) {
|
||||||
$this->io->writeError($e->getMessage());
|
$this->io->writeError($e->getMessage());
|
||||||
exit(1);
|
if ($this->areExceptionsCaught()){
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
throw $e;
|
||||||
}
|
}
|
||||||
} catch (JsonValidationException $e) {
|
} catch (JsonValidationException $e) {
|
||||||
if ($required) {
|
if ($required) {
|
||||||
|
|
Loading…
Reference in New Issue