* Exception thrown when no path can be mapped to the class name.
10
*/
11
class NoPathFoundException extends TDBMException
12
{
13
public static function create(string $className)
14
{
15
return new self(sprintf('Could not find a path where class %s would be autoloadable. Maybe consider editing your composer.json autoload section accordingly.', $className));