Since you haven't specified your version, I've split my answer in two, one for 1.3 and one for 2.0.
CakePHP 1.3
The loadModel() method will return false if it cannot find the model, see the API documentation. So just check it doesn't return false like:
if(!$this->loadModel($type)) {
return "xxx";
}
CakePHP 2.0
If the model class does not exist, the loadModel() method will throw a MissingModelException, so just catch that.
See the API docs on this.
Example:
try {
$this->loadModel($type);
} catch(MissingModelException $e) {
// Model not found!
echo $e->getMessage();
}