diff options
| author | Remko Tronçon <git@el-tramo.be> | 2009-11-10 22:06:59 (GMT) |
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2009-11-10 22:06:59 (GMT) |
| commit | f76e39f30966279a10a9ba97271cebdc3cba2c4d (patch) | |
| tree | 486514e62ce717b607b9af8a13db3b0fceddf46c /Swiften/Session/SessionStream.h | |
| parent | 80a67051508b7a2f59e0ded9d1dd4df490d44ec2 (diff) | |
| download | swift-f76e39f30966279a10a9ba97271cebdc3cba2c4d.zip swift-f76e39f30966279a10a9ba97271cebdc3cba2c4d.tar.bz2 | |
Fix error messages.
Diffstat (limited to 'Swiften/Session/SessionStream.h')
| -rw-r--r-- | Swiften/Session/SessionStream.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/Session/SessionStream.h b/Swiften/Session/SessionStream.h index 6bba237..1252c5a 100644 --- a/Swiften/Session/SessionStream.h +++ b/Swiften/Session/SessionStream.h @@ -14,13 +14,14 @@ namespace Swift { class Error : public Swift::Error { public: enum Type { ParseError, TLSError, InvalidTLSCertificateError, - ConnectionError + ConnectionReadError, + ConnectionWriteError }; Error(Type type) : type(type) {} Type type; }; |
Swift