diff --git a/core/Site.php b/core/Site.php index f79a442317bf8a0658db9544fbfaa457a115931e..4818590f8212f43907b2dc6123211d5d63f8af17 100644 --- a/core/Site.php +++ b/core/Site.php @@ -231,8 +231,11 @@ class Site */ protected function get($name) { + if (!isset(self::$infoSites[$this->id])) { + throw new UnexpectedWebsiteFoundException('The requested website id = ' . (int)$this->id . ' couldn\'t be found'); + } if (!isset(self::$infoSites[$this->id][$name])) { - throw new UnexpectedWebsiteFoundException('The requested website id = ' . (int)$this->id . ' (or its property ' . $name . ') couldn\'t be found'); + throw new Exception("The property $name could not be found on the website ID " . (int)$this->id); } return self::$infoSites[$this->id][$name]; }