I have an Exception class:
namespace abc;
class AbcException extends Exception {
// blah blah
}
It produces this error:
Class 'abcException' not found ...
Questions:
What can I do to make this work ?
Useful documents are appreciated.
Thanks for reading my question
Use a leading backslash to indicate the global namespace:
There's an entire page devoted to this in the PHP manual!