Lines Matching refs:exception
6 // Implementation of Exception and derived classes
19 #include "Magick++/Exception.h"
21 Magick::Exception::Exception(const std::string& what_)
22 : std::exception(),
24 _nested((Exception *) NULL)
28 Magick::Exception::Exception(const std::string& what_,
29 Exception* nested_)
30 : std::exception(),
36 Magick::Exception::Exception(const Magick::Exception& original_)
37 : exception(original_),
39 _nested((Exception *) NULL)
43 Magick::Exception::~Exception() throw()
45 if (_nested != (Exception *) NULL)
49 Magick::Exception& Magick::Exception::operator=(
50 const Magick::Exception& original_)
57 const char* Magick::Exception::what() const throw()
62 const Magick::Exception* Magick::Exception::nested() const throw()
67 void Magick::Exception::nested(Exception* nested_) throw()
73 : Exception(what_)
77 Magick::Error::Error(const std::string& what_,Exception *nested_)
78 : Exception(what_,nested_)
91 Magick::ErrorBlob::ErrorBlob(const std::string& what_,Exception *nested_)
105 Magick::ErrorCache::ErrorCache(const std::string& what_,Exception *nested_)
119 Magick::ErrorCoder::ErrorCoder(const std::string& what_,Exception *nested_)
134 Exception *nested_)
149 Exception *nested_)
164 Exception *nested_)
178 Magick::ErrorDraw::ErrorDraw(const std::string& what_,Exception *nested_)
197 Exception *nested_)
208 Magick::ErrorImage::ErrorImage(const std::string& what_,Exception *nested_)
223 Exception *nested_)
237 Magick::ErrorModule::ErrorModule(const std::string& what_,Exception *nested_)
251 Magick::ErrorMonitor::ErrorMonitor(const std::string& what_,Exception *nested_)
265 Magick::ErrorOption::ErrorOption(const std::string& what_,Exception *nested_)
279 Magick::ErrorPolicy::ErrorPolicy(const std::string& what_,Exception *nested_)
295 Exception *nested_)
310 Exception *nested_)
324 Magick::ErrorStream::ErrorStream(const std::string& what_,Exception *nested_)
338 Magick::ErrorType::ErrorType(const std::string& what_,Exception *nested_)
353 Exception *nested_)
367 Magick::ErrorXServer::ErrorXServer(const std::string& what_,Exception *nested_)
377 : Exception(what_)
381 Magick::Warning::Warning(const std::string& what_,Exception *nested_)
382 : Exception(what_,nested_)
395 Magick::WarningBlob::WarningBlob(const std::string& what_,Exception *nested_)
409 Magick::WarningCache::WarningCache(const std::string& what_,Exception *nested_)
423 Magick::WarningCoder::WarningCoder(const std::string& what_,Exception *nested_)
438 Exception *nested_)
453 Exception *nested_)
468 Exception *nested_)
482 Magick::WarningDraw::WarningDraw(const std::string& what_,Exception *nested_)
497 Exception *nested_)
511 Magick::WarningImage::WarningImage(const std::string& what_,Exception *nested_)
527 const std::string& what_,Exception *nested_)
542 Exception *nested_)
558 Exception *nested_)
573 Exception *nested_)
588 Exception *nested_)
603 Exception *nested_)
618 Exception *nested_)
633 Exception *nested_)
647 Magick::WarningType::WarningType(const std::string& what_,Exception *nested_)
662 Exception *nested_)
677 Exception *nested_)
701 Magick::Exception* Magick::createException(const MagickCore::ExceptionInfo *exception_)
826 Exception
844 nestedException=(Exception *) NULL;
858 if (nestedException == (Exception *) NULL)