Error reporting methods
Contents
CatchException( const ExceptionInfo *exception );
CatchException() returns if no exceptions is found otherwise it reports the exception as a warning, error, or fatal depending on the severity.
The format of the CatchException method is:
CatchException( const ExceptionInfo *exception );
A description of each parameter follows:
The exception info.
void CopyException( ExceptionInfo *copy, const ExceptionInfo *original );
CopyException() copies exception data from one ExceptionInfo structure to another.
The format of the CopyException method is:
void CopyException( ExceptionInfo *copy, const ExceptionInfo *original );
A description of each parameter follows:
The exception to copy to.
The exception to copy from.
void DestroyExceptionInfo( ExceptionInfo *exception );
DestroyExceptionInfo() deallocates memory associated with exception.
The format of the DestroyExceptionInfo method is:
void DestroyExceptionInfo( ExceptionInfo *exception );
A description of each parameter follows:
The exception info.
GetExceptionInfo( ExceptionInfo *exception );
GetExceptionInfo() initializes an exception to default values.
The format of the GetExceptionInfo method is:
GetExceptionInfo( ExceptionInfo *exception );
A description of each parameter follows:
The exception info.
const char *GetLocaleExceptionMessage( const ExceptionType severity, const char *tag );
GetLocaleExceptionMessage() converts a enumerated exception severity and tag to a message in the current locale.
The format of the GetLocaleExceptionMessage method is:
const char *GetLocaleExceptionMessage( const ExceptionType severity, const char *tag );
the severity of the exception.
the message tag.
void MagickError( const ExceptionType error, const char *reason, const char *description );
Method MagickError calls the error handler methods with an error reason.
The format of the MagickError method is:
void MagickError( const ExceptionType error, const char *reason, const char *description );
Specifies the numeric error category.
Specifies the reason to display before terminating the program.
Specifies any description to the reason.
void MagickFatalError( const ExceptionType error, const char *reason, const char *description );
MagickFatalError() calls the fatal error handler methods with an error reason. The fatal error handler is not expected to return!
The format of the MagickFatalError method is:
void MagickFatalError( const ExceptionType error, const char *reason, const char *description );
Specifies the numeric error category.
Specifies the reason to display before terminating the program.
Specifies any description to the reason.
void MagickWarning( const ExceptionType warning, const char *reason, const char *description );
Method MagickWarning calls the warning handler methods with a warning reason.
The format of the MagickWarning method is:
void MagickWarning( const ExceptionType warning, const char *reason, const char *description );
The warning severity.
Define the reason for the warning.
Describe the warning.
ErrorHandler SetErrorHandler( ErrorHandler handler );
SetErrorHandler() sets the error handler to the specified method and returns the previous error handler.
The format of the SetErrorHandler method is:
ErrorHandler SetErrorHandler( ErrorHandler handler );
A description of each parameter follows:
The method to handle errors.
SetExceptionInfo( ExceptionInfo *exception, ExceptionType severity );
SetExceptionInfo() set the exception severity.
The format of the SetExceptionInfo method is:
SetExceptionInfo( ExceptionInfo *exception, ExceptionType severity );
A description of each parameter follows:
The exception info.
The exception severity.
FatalErrorHandler SetFatalErrorHandler( FatalErrorHandler handler );
SetFatalErrorHandler() sets the fatal error handler to the specified method and returns the previous fatal error handler.
The format of the SetFatalErrorHandler method is:
FatalErrorHandler SetFatalErrorHandler( FatalErrorHandler handler );
A description of each parameter follows:
The method to handle errors.
ErrorHandler SetWarningHandler( ErrorHandler handler );
SetWarningHandler() sets the warning handler to the specified method and returns the previous warning handler.
The format of the SetWarningHandler method is:
ErrorHandler SetWarningHandler( ErrorHandler handler );
A description of each parameter follows:
The method to handle warnings.
void ThrowException( ExceptionInfo *exception, const ExceptionType severity, const char *reason, const char *description );
ThrowException() throws an exception with the specified severity code, reason, and optional description.
The format of the ThrowException method is:
void ThrowException( ExceptionInfo *exception, const ExceptionType severity, const char *reason, const char *description );
The exception.
The severity of the exception.
The reason of the exception.
The exception description.
void ThrowLoggedException( ExceptionInfo *exception, const ExceptionType severity, const char *reason, const char *description, const char *module, const char *function, const unsigned long line ;
ThrowLoggedException() throws an exception with the specified severity code, reason, optional description, source filename, function name, and line number. If logging is enabled, the exception is also logged.
If the exception already contains an ErrorException (or greater) or the existing exception is more severe, then it is ignored.
The format of the ThrowLoggedException method is:
void ThrowLoggedException( ExceptionInfo *exception, const ExceptionType severity, const char *reason, const char *description, const char *module, const char *function, const unsigned long line ;
The exception.
The severity of the exception.
The reason of the exception.
The exception description.
The source module filename.
The function name.
The line number of the source module.
Copyright © GraphicsMagick Group 2002 - 2023