neneaX/multi-routing

View on GitHub
src/Adapters/JsonRpc/Exceptions/NotificationException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace MultiRouting\Adapters\JsonRpc\Exceptions;

use Symfony\Component\HttpKernel\Exception\HttpException;

class NotificationException extends HttpException
{
    /**
     * Constructor.
     *
     * @param string     $message  The internal exception message
     * @param \Exception $previous The previous exception
     * @param int        $code     The internal exception code
     */
    public function __construct($message = null, \Exception $previous = null, $code = 0)
    {
        parent::__construct(202, $message, $previous, array(), $code);
    }
}