public function test_that_create_returns_exception_instance()
 {
     $exception = ServiceContainerException::create('Container error');
     $this->assertInstanceOf('Novuso\\Common\\Application\\Container\\Exception\\ServiceContainerException', $exception);
 }
 /**
  * Constructs EntryNotFoundException
  *
  * @param string         $message  The exception message
  * @param int            $code     The exception code
  * @param Exception|null $previous The previous exception for chaining
  */
 public function __construct($message = '', $code = 1501, Exception $previous = null)
 {
     parent::__construct($message, $code, $previous);
 }