Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
botman
/
botman
/
src
/
Interfaces
:
ExceptionHandlerInterface-20250408165551.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace BotMan\BotMan\Interfaces; use BotMan\BotMan\BotMan; interface ExceptionHandlerInterface { /** * Handle an exception. * * @param \Throwable $e * @param BotMan $bot * @return mixed */ public function handleException($e, BotMan $bot); /** * Register a new exception type. * * @param string $exception * @param callable $closure * @return mixed */ public function register(string $exception, callable $closure); }