Possible Duplicate:
Backslash syntax when creating objects
Backslash in PHP — what does it mean?
Can someone explain me what is the meaning of this "\" in this code snippet
throw new \RuntimeException("Unable to cache the data with ID '$id'.");
as opposed to
throw new RuntimeException("Unable to cache the data with ID '$id'.");