PHP code example of lakshmaji / exceptions

1. Go to this page and download the library: Download lakshmaji/exceptions library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lakshmaji / exceptions example snippets


    php artisan vendor:publish 




namespace App;

use Lakshmaji\Exceptions\GenericExceptionType;


/**
 * -----------------------------------------------------------------------------
 *   CustomException for defining exception codes
 * -----------------------------------------------------------------------------
 * Class having methods to define error codes related to DB exceptions.
 *
 * @since    1.0.0
 * @version  1.0.0
 * @author   Lakshmaji 
 */
class CustomException extends GenericExceptionType
{
    // DUPLICATE RECORD
    /**
     * @var array
     */
    public static $DUPLICATE_RECORD = ['error_code' => 12000, 'code' => 400];
    
    // General Error
    /**
     * @var array
     */
    public static $GENERAL_ERROR = ['error_code' => 10001, 'code' => 400];

    
}
// end of class GenericExceptionType
// end of file GenericExceptionType.php

    // In controller
    throw new GenericException(CustomException::$DUPLICATE_ORGANIZATION);