class Exc : public String
This is the preferred root class of U++ exception. It is basically a String. The idea is that all kinds of exception can be either managed by specific handlers, or simple Exc handler can be used, displaying textual information to the user.
Exc()
Default constructor.
Exc(const String& desc)
Constructor, error described as desc.
|