Small container class, containing a D-Bus error.  
 More...
#include <TelepathyQt/DBusError>
Small container class, containing a D-Bus error. 
      
        
          | Tp::DBusError::DBusError | ( |  | ) |  | 
      
 
 
      
        
          | Tp::DBusError::DBusError | ( | const QString & | name, | 
        
          |  |  | const QString & | message | 
        
          |  | ) |  |  | 
      
 
Construct a DBusError with the given error name and message.
- Parameters
- 
  
    | name | The D-Bus error name. |  | message | A human-readable description of the error. |  
 
 
 
      
        
          | Tp::DBusError::~DBusError | ( |  | ) |  | 
      
 
 
  
  | 
        
          | bool Tp::DBusError::isValid | ( |  | ) | const |  | inline | 
 
Return whether this DBusError is set to contain an error or not.
- Returns
- trueif the error name and message have been set, or- falseotherwise.
 
 
      
        
          | bool Tp::DBusError::operator== | ( | const DBusError & | other | ) | const | 
      
 
Compare this error with another one.
- Parameters
- 
  
    | other | The other error to compare to. |  
 
- Returns
- trueif the two errors have the same name and message or- falseotherwise.
 
 
      
        
          | bool Tp::DBusError::operator!= | ( | const DBusError & | other | ) | const | 
      
 
Compare this error with another one.
- Parameters
- 
  
    | other | The other error to compare to. |  
 
- Returns
- falseif the two errors have the same name and message or- trueotherwise.
 
 
      
        
          | QString Tp::DBusError::name | ( |  | ) | const | 
      
 
Return the D-Bus name of this error.
- Returns
- The D-Bus name of this error. 
 
 
      
        
          | QString Tp::DBusError::message | ( |  | ) | const | 
      
 
Return the human-readable description of the error.
- Returns
- The human-readable description of the error. 
 
 
      
        
          | void Tp::DBusError::set | ( | const QString & | name, | 
        
          |  |  | const QString & | message | 
        
          |  | ) |  |  | 
      
 
Set this DBusError to contain the given error name and message.
- Parameters
- 
  
    | name | The D-Bus error name to set. |  | message | The description of the error to set. |