| 1 | <?php |
||
| 24 | class BindingNotAcceptedException extends RuntimeException |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Creates a new exception. |
||
| 28 | * |
||
| 29 | * @param string $typeName The name of the binding type. |
||
| 30 | * @param string $bindingClass The class name of the binding. |
||
| 31 | * @param Exception|null $cause The exception that caused this |
||
| 32 | * exception. |
||
| 33 | * |
||
| 34 | * @return static The created exception. |
||
| 35 | */ |
||
| 36 | 6 | public static function forBindingClass($typeName, $bindingClass, Exception $cause = null) |
|
| 44 | } |
||
| 45 |