diff options
author | Vincent Richard <[email protected]> | 2013-11-23 08:35:58 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-11-23 08:35:58 +0000 |
commit | 2bbf3eac25c92e12c2ffef713ef3c8cbca541ca8 (patch) | |
tree | 87de939bca2c3d0ff435b37d4825a78bcb4549e3 /src/htmlTextPart.cpp | |
parent | Do not throw exception for normal code flow (exceptions::no_such_parameter). (diff) | |
download | vmime-2bbf3eac25c92e12c2ffef713ef3c8cbca541ca8.tar.gz vmime-2bbf3eac25c92e12c2ffef713ef3c8cbca541ca8.zip |
Do not throw exception for normal code flow (removed exceptions::no_object_found).
Diffstat (limited to 'src/htmlTextPart.cpp')
-rw-r--r-- | src/htmlTextPart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlTextPart.cpp b/src/htmlTextPart.cpp index 680d3955..44459336 100644 --- a/src/htmlTextPart.cpp +++ b/src/htmlTextPart.cpp @@ -381,7 +381,7 @@ shared_ptr <const htmlTextPart::embeddedObject> htmlTextPart::findObject(const s return *o; } - throw exceptions::no_object_found(); + return null; } |