Deepsolver
|
Public Member Functions | |
std::string | getMessage () const |
Returns the single line error description. | |
std::string | getType () const |
Returns the string with error type. | |
RegExpException (const std::string &message) | |
The constructor. | |
virtual | ~RegExpException () |
The destructor. |
RegExpException::RegExpException | ( | const std::string & | message | ) | [inline] |
[in] | message | The error message |
std::string RegExpException::getMessage | ( | ) | const [inline, virtual] |
This method returns the single line string value with error description. Usually it is the value printed to user in error message. The value may not include error type since it can be obtained with getType() method.
Implements DeepsolverException.
std::string RegExpException::getType | ( | ) | const [inline, virtual] |
This method returns the short string with one or two words describing the error type. For example, this method can return values like "system", "rpm" etc. The value returned by this method usually is used for error message construction.
Implements DeepsolverException.