LoginSignup
16
8

More than 3 years have passed since last update.

【Laravel】任意のExceptionをthrowする。

Last updated at Posted at 2020-06-30

メモとして残します。

■やり方

throw new \Exception("エラーメッセージ");


try{
    //処理
    if(!$hoge){
        throw new \Exception("エラーだよ");
    }
} catch (\Exception $e) {
    echo $e->getMessage();// エラーだよ
}
16
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
8