【Laravel】artisanのmake:exceptionコマンドを解説

チートシート

Laravel 10.x以降のartisanの「make:exception」コマンドを解説します。

Description

新しいカスタム例外クラスを作成します。

Usage

php artisan make:exception [-f|--force] [--render] [--report] [--] <name>

Arguments

引数必須説明
name必須例外クラス名

Options

オプション省略形必須説明
forcef-例外がすでに存在する場合でもクラスを作成する
render--空のレンダリングメソッドで例外を作成する
report--空のレポートメソッドで例外を作成する

Examples

no options

php artisan make:exception FooException
   INFO  Exception [app/Exceptions/FooException.php] created successfully.  
<?php

namespace App\Exceptions;

use Exception;

class FooException extends Exception
{
    //
}

Stub

OptionStub file name
-exception.stub
renderexception-render.stub
reportexception-report.stub
render + reportexception-render-report.stub

Source

10.x

framework/src/Illuminate/Foundation/Console/ExceptionMakeCommand.php at 10.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.

11.x

framework/src/Illuminate/Foundation/Console/ExceptionMakeCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.

コメント

タイトルとURLをコピーしました