Lines Matching defs:Exception

6 // Definition of Magick::Exception and derived classes
22 class MagickPPExport Exception: public std::exception
27 Exception(const std::string& what_);
30 Exception(const std::string& what_, Exception* nested_);
33 Exception(const Exception& original_);
36 virtual ~Exception() throw();
39 Exception& operator=(const Exception& original_);
45 const Exception* nested() const throw();
53 void nested(Exception* nested_) throw();
57 Exception* _nested;
64 class MagickPPExport Error: public Exception
68 explicit Error(const std::string& what_,Exception *nested_);
76 explicit ErrorBlob(const std::string& what_,Exception *nested_);
84 explicit ErrorCache(const std::string& what_,Exception *nested_);
92 explicit ErrorCoder(const std::string& what_,Exception *nested_);
100 explicit ErrorConfigure(const std::string& what_,Exception *nested_);
108 explicit ErrorCorruptImage(const std::string& what_,Exception *nested_);
116 explicit ErrorDelegate(const std::string& what_,Exception *nested_);
124 explicit ErrorDraw(const std::string& what_,Exception *nested_);
132 explicit ErrorFileOpen(const std::string& what_,Exception *nested_);
140 explicit ErrorImage(const std::string& what_,Exception *nested_);
148 explicit ErrorMissingDelegate(const std::string& what_,Exception *nested_);
156 explicit ErrorModule(const std::string& what_,Exception *nested_);
164 explicit ErrorMonitor(const std::string& what_,Exception *nested_);
172 explicit ErrorOption(const std::string& what_,Exception *nested_);
180 explicit ErrorPolicy(const std::string& what_,Exception *nested_);
188 explicit ErrorRegistry(const std::string& what_,Exception *nested_);
196 explicit ErrorResourceLimit(const std::string& what_,Exception *nested_);
204 explicit ErrorStream(const std::string& what_,Exception *nested_);
212 explicit ErrorType(const std::string& what_,Exception *nested_);
220 explicit ErrorUndefined(const std::string& what_,Exception *nested_);
228 explicit ErrorXServer(const std::string& what_,Exception *nested_);
236 class MagickPPExport Warning: public Exception
240 explicit Warning(const std::string& what_,Exception *nested_);
248 explicit WarningBlob(const std::string& what_,Exception *nested_);
256 explicit WarningCache(const std::string& what_,Exception *nested_);
264 explicit WarningCoder(const std::string& what_,Exception *nested_);
272 explicit WarningConfigure(const std::string& what_,Exception *nested_);
280 explicit WarningCorruptImage(const std::string& what_,Exception *nested_);
288 explicit WarningDelegate(const std::string& what_,Exception *nested_);
296 explicit WarningDraw(const std::string& what_,Exception *nested_);
304 explicit WarningFileOpen(const std::string& what_,Exception *nested_);
312 explicit WarningImage(const std::string& what_,Exception *nested_);
321 Exception *nested_);
329 explicit WarningModule(const std::string& what_,Exception *nested_);
337 explicit WarningMonitor(const std::string& what_,Exception *nested_);
345 explicit WarningOption(const std::string& what_,Exception *nested_);
353 explicit WarningPolicy(const std::string& what_,Exception *nested_);
361 explicit WarningRegistry(const std::string& what_,Exception *nested_);
369 explicit WarningResourceLimit(const std::string& what_,Exception *nested_);
377 explicit WarningStream(const std::string& what_,Exception *nested_);
385 explicit WarningType(const std::string& what_,Exception *nested_);
393 explicit WarningUndefined(const std::string& what_,Exception *nested_);
401 explicit WarningXServer(const std::string& what_,Exception *nested_);
412 Exception* createException(const MagickCore::ExceptionInfo *exception_);