When designing an exception class, think of it as a standalone class with data members and member functions. A well-designed exception class should have a member function that returns a verbal description of the exception. In applications that use error codes, you should also include a member function that returns the exception’s numeric code. This way, the handler of that exception doesn’t need to look for this information elsewhere; it can retrieve it from the exception object directly.
class myException { // ..stuff public: const char * description() const; int code_number() const; }; catch( myException & ex) { cout<<" error occurred: "<< ex.description(); cout<< "with code: " << ex.code_number(); }
Remember also that sometimes the same exception can be thrown in similar but not identical situations. For example, a DBMS system can throw the same exception when it encounters a referential integrity problem or an attempt to insert a duplicate key. To distinguish between these errors, the handler can query the exception object and obtain a precise description of the actual error that occurred.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Samsung introduces new Galaxy security features
- Using ENUM in MySQL Columns
- New Flexera Software App Portal Release Adds Support for Cloud & Apple?? Mac Apps, and ROI Dashboard – Extending Enterprise App Store Leadership
- KPMG enhances audit with data intelligence platform
- Quickly Surround a Block of Code in Visual Studio
























