Skip to content

Commit

Permalink
Added previous exception to EntryNotFoundException thrown in Containe…
Browse files Browse the repository at this point in the history
…r.php (#30862)
  • Loading branch information
JessJNielsen authored and taylorotwell committed Dec 17, 2019
1 parent 503e9c3 commit a06132c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Container/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ public function get($id)
throw $e;
}

throw new EntryNotFoundException($id);
throw new EntryNotFoundException($id, $e->getCode(), $e);
}
}

Expand Down

0 comments on commit a06132c

Please sign in to comment.