[PrestaShopException]

Shop not found
at line 418 in file classes/shop/Shop.php

413.                 // No shop found ... too bad, let's redirect to default shop
414.                 $default_shop = new Shop(Configuration::get('PS_SHOP_DEFAULT'));
415. 
416.                 // Hmm there is something really bad in your Prestashop !
417.                 if (!Validate::isLoadedObject($default_shop)) {
418.                     throw new PrestaShopException('Shop not found');
419.                 }
420. 
421.                 $params = $_GET;
422.                 unset($params['id_shop']);
423.                 $url = $default_shop->domain;