File "ExceptionHandlerInterface.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/botman/botman/src/Interfaces/ExceptionHandlerInterface.php
File size: 506 bytes
MIME-type: text/x-php
Charset: utf-8

<?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);
}