Lines Matching refs:exception

34 const exception exception::NO_EXCEPTION;
37 exception::exception() in exception() function in vmime::exception
43 exception::exception(const string& what, const exception& other) in exception() function in vmime::exception
49 exception::exception(const exception& e) in exception() function in vmime::exception
55 exception::~exception() throw() in ~exception()
61 void exception::chainException(const exception& other) in chainException()
63 exception* e = other.clone(); in chainException()
70 const exception* exception::other() const throw() in other()
76 const char* exception::name() const throw() in name()
82 exception* exception::clone() const in clone()
84 return new exception(*this); in clone()
98 bad_field_value_type::bad_field_value_type(const string& fieldName, const exception& other) in bad_field_value_type()
99 : exception("Bad value type for field '" + fieldName + "'.", other) {} in bad_field_value_type()
101 exception* bad_field_value_type::clone() const { return new bad_field_value_type(*this); } in clone()
111 charset_conv_error::charset_conv_error(const string& what, const exception& other) in charset_conv_error()
112 : exception(what.empty() ? "Charset conversion error." : what, other) {} in charset_conv_error()
114 exception* charset_conv_error::clone() const { return new charset_conv_error(*this); } in clone()
124 …sequence_for_charset::illegal_byte_sequence_for_charset(const string& what, const exception& other) in illegal_byte_sequence_for_charset()
125 : exception(what.empty() ? "Found illegal byte sequence for this charset." : what, other) {} in illegal_byte_sequence_for_charset()
127 exception* illegal_byte_sequence_for_charset::clone() const { return new illegal_byte_sequence_for_… in clone()
137 no_encoder_available::no_encoder_available(const string& name, const exception& other) in no_encoder_available()
138 : exception("No encoder available: '" + name + "'.", other) {} in no_encoder_available()
140 exception* no_encoder_available::clone() const { return new no_encoder_available(*this); } in clone()
149 no_digest_algorithm_available::no_digest_algorithm_available(const string& name, const exception& o… in no_digest_algorithm_available()
150 : exception("No algorithm available: '" + name + "'.", other) {} in no_digest_algorithm_available()
152 exception* no_digest_algorithm_available::clone() const { return new no_digest_algorithm_available(… in clone()
161 no_such_field::no_such_field(const exception& other) in no_such_field()
162 : exception("Field not found.", other) {} in no_such_field()
164 exception* no_such_field::clone() const { return new no_such_field(*this); } in clone()
173 no_such_part::no_such_part(const exception& other) in no_such_part()
174 : exception("Part not found.", other) {} in no_such_part()
176 exception* no_such_part::clone() const { return new no_such_part(*this); } in clone()
185 no_such_message_id::no_such_message_id(const exception& other) in no_such_message_id()
186 : exception("Message-Id not found.", other) {} in no_such_message_id()
188 exception* no_such_message_id::clone() const { return new no_such_message_id(*this); } in clone()
197 open_file_error::open_file_error(const exception& other) in open_file_error()
198 : exception("Error opening file.", other) {} in open_file_error()
200 exception* open_file_error::clone() const { return new open_file_error(*this); } in clone()
209 no_factory_available::no_factory_available(const exception& other) in no_factory_available()
210 : exception("No factory available.", other) {} in no_factory_available()
212 exception* no_factory_available::clone() const { return new no_factory_available(*this); } in clone()
221 no_platform_handler::no_platform_handler(const exception& other) in no_platform_handler()
222 : exception("No platform handler installed.", other) {} in no_platform_handler()
224 exception* no_platform_handler::clone() const { return new no_platform_handler(*this); } in clone()
233 no_expeditor::no_expeditor(const exception& other) in no_expeditor()
234 : exception("No expeditor specified.", other) {} in no_expeditor()
236 exception* no_expeditor::clone() const { return new no_expeditor(*this); } in clone()
245 no_recipient::no_recipient(const exception& other) in no_recipient()
246 : exception("No recipient specified.", other) {} in no_recipient()
248 exception* no_recipient::clone() const { return new no_recipient(*this); } in clone()
257 no_such_property::no_such_property(const string& name, const exception& other) in no_such_property()
258 : exception(string("No such property: '") + name + string("'."), other) { } in no_such_property()
260 exception* no_such_property::clone() const { return new no_such_property(*this); } in clone()
269 invalid_property_type::invalid_property_type(const exception& other) in invalid_property_type()
270 : exception("Invalid property type.", other) {} in invalid_property_type()
272 exception* invalid_property_type::clone() const { return new invalid_property_type(*this); } in clone()
281 invalid_argument::invalid_argument(const exception& other) in invalid_argument()
282 : exception("Invalid argument.", other) {} in invalid_argument()
284 exception* invalid_argument::clone() const { return new invalid_argument(*this); } in clone()
293 system_error::system_error(const string& what, const exception& other) in system_error()
294 : exception(what, other) {} in system_error()
296 exception* system_error::clone() const { return new system_error(*this); } in clone()
305 malformed_url::malformed_url(const string& error, const exception& other) in malformed_url()
306 : exception("Malformed URL: " + error + ".", other) {} in malformed_url()
308 exception* malformed_url::clone() const { return new malformed_url(*this); } in clone()
321 net_exception::net_exception(const string& what, const exception& other) in net_exception()
322 : exception(what, other) {} in net_exception()
324 exception* net_exception::clone() const { return new net_exception(*this); } in clone()
333 socket_exception::socket_exception(const string& what, const exception& other) in socket_exception()
337 exception* socket_exception::clone() const { return new socket_exception(*this); } in clone()
346 socket_not_connected_exception::socket_not_connected_exception(const string& what, const exception&… in socket_not_connected_exception()
350 exception* socket_not_connected_exception::clone() const { return new socket_not_connected_exceptio… in clone()
359 connection_error::connection_error(const string& what, const exception& other) in connection_error()
363 exception* connection_error::clone() const { return new connection_error(*this); } in clone()
372 connection_greeting_error::connection_greeting_error(const string& response, const exception& other) in connection_greeting_error()
377 exception* connection_greeting_error::clone() const { return new connection_greeting_error(*this); } in clone()
386 authentication_error::authentication_error(const string& response, const exception& other) in authentication_error()
391 exception* authentication_error::clone() const { return new authentication_error(*this); } in clone()
400 unsupported_option::unsupported_option(const exception& other) in unsupported_option()
403 exception* unsupported_option::clone() const { return new unsupported_option(*this); } in clone()
412 illegal_state::illegal_state(const string& state, const exception& other) in illegal_state()
415 exception* illegal_state::clone() const { return new illegal_state(*this); } in clone()
424 folder_not_found::folder_not_found(const exception& other) in folder_not_found()
427 exception* folder_not_found::clone() const { return new folder_not_found(*this); } in clone()
436 folder_already_open::folder_already_open(const exception& other) in folder_already_open()
439 exception* folder_already_open::clone() const { return new folder_already_open(*this); } in clone()
448 message_not_found::message_not_found(const exception& other) in message_not_found()
451 exception* message_not_found::clone() const { return new message_not_found(*this); } in clone()
460 operation_not_supported::operation_not_supported(const exception& other) in operation_not_supported()
463 exception* operation_not_supported::clone() const { return new operation_not_supported(*this); } in clone()
472 operation_timed_out::operation_timed_out(const exception& other) in operation_timed_out()
475 exception* operation_timed_out::clone() const { return new operation_timed_out(*this); } in clone()
484 operation_cancelled::operation_cancelled(const exception& other) in operation_cancelled()
487 exception* operation_cancelled::clone() const { return new operation_cancelled(*this); } in clone()
496 unfetched_object::unfetched_object(const exception& other) in unfetched_object()
499 exception* unfetched_object::clone() const { return new unfetched_object(*this); } in clone()
508 not_connected::not_connected(const exception& other) in not_connected()
511 exception* not_connected::clone() const { return new not_connected(*this); } in clone()
520 already_connected::already_connected(const exception& other) in already_connected()
523 exception* already_connected::clone() const { return new already_connected(*this); } in clone()
532 illegal_operation::illegal_operation(const string& msg, const exception& other) in illegal_operation()
539 exception* illegal_operation::clone() const { return new illegal_operation(*this); } in clone()
549 const string& desc, const exception& other) in command_error()
561 exception* command_error::clone() const { return new command_error(*this); } in clone()
570 invalid_response::invalid_response(const string& command, const string& response, const exception& … in invalid_response()
582 exception* invalid_response::clone() const { return new invalid_response(*this); } in clone()
591 partial_fetch_not_supported::partial_fetch_not_supported(const exception& other) in partial_fetch_not_supported()
594 exception* partial_fetch_not_supported::clone() const { return new partial_fetch_not_supported(*thi… in clone()
603 invalid_folder_name::invalid_folder_name(const string& error, const exception& other) in invalid_folder_name()
609 exception* invalid_folder_name::clone() const { return new invalid_folder_name(*this); } in clone()
624 …eption::filesystem_exception(const string& what, const utility::path& path, const exception& other) in filesystem_exception()
625 : exception(what, other), m_path(path) {} in filesystem_exception()
629 exception* filesystem_exception::clone() const { return new filesystem_exception(*this); } in clone()
638 not_a_directory::not_a_directory(const utility::path& path, const exception& other) in not_a_directory()
641 exception* not_a_directory::clone() const { return new not_a_directory(*this); } in clone()
650 file_not_found::file_not_found(const utility::path& path, const exception& other) in file_not_found()
653 exception* file_not_found::clone() const { return new file_not_found(*this); } in clone()
665 authentication_exception::authentication_exception(const string& what, const exception& other) in authentication_exception()
666 : exception(what, other) {} in authentication_exception()
668 exception* authentication_exception::clone() const { return new authentication_exception(*this); } in clone()
677 no_auth_information::no_auth_information(const exception& other) in no_auth_information()
680 exception* no_auth_information::clone() const { return new no_auth_information(*this); } in clone()
692 sasl_exception::sasl_exception(const string& what, const exception& other) in sasl_exception()
695 exception* sasl_exception::clone() const { return new sasl_exception(*this); } in clone()
704 no_such_mechanism::no_such_mechanism(const string& name, const exception& other) in no_such_mechanism()
707 exception* no_such_mechanism::clone() const { return new no_such_mechanism(*this); } in clone()
722 tls_exception::tls_exception(const string& what, const exception& other) in tls_exception()
723 : exception(what, other) {} in tls_exception()
725 exception* tls_exception::clone() const { return new tls_exception(*this); } in clone()