pluf/workflow

View on GitHub
src/Exceptions/IllegalStateException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Pluf\Workflow\Exceptions;

use RuntimeException;

class IllegalStateException extends RuntimeException
{

    /**
     *
     * @param mixed $message
     *            [optional]
     * @param mixed $code
     *            [optional]
     * @param mixed $previous
     *            [optional]
     */
    public function __construct($message = null, $code = null, $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}