splclass loader error message .

This commit is contained in:
Miroslav Šedivý 2019-12-23 18:59:25 +01:00
parent 5548f66fd9
commit 0c61f05ffe

View file

@ -136,7 +136,7 @@ class SplClassLoader
$full = ($this->_includePath !== null ? $this->_includePath . DIRECTORY_SEPARATOR : '') . $fileName;
if (!file_exists($full)) {
throw new Exception("Class file for '".$className."' not found");
throw new Exception("Class file for '".$className."' not found.");
}
require $full;