Dhii/machine-state-machine-interface

View on GitHub
src/Exception/CouldNotTransitionExceptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\State\Exception;

use Dhii\State\TransitionAwareInterface;

/**
 * An exception thrown when a state machine fails to transition.
 *
 * @since [*next-version*]
 */
interface CouldNotTransitionExceptionInterface extends
    StateMachineExceptionInterface,
    TransitionAwareInterface
{
}