1 <?php namespace CupOfTea\Chain\Exceptions;
2
3 use Exception;
4
5 class InvalidContainerException extends Exception
6 {
7
8 public function __construct($container, $code = 0, Exception $previous = null)
9 {
10 $message = 'The provided Container <strong>' . get_class($container) . '</strong> does not have the method <strong>make</strong>';
11
12 parent::__construct($message, $code, $previous);
13 }
14
15 }
16