Home | History | Annotate | Download | only in MagickWand

Lines Matching refs:severity

25 #define CLIWandException(severity,tag,option) \
26 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \
29 #define CLIWandExceptionArg(severity,tag,option,arg) \
30 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \
38 #define CLIWandExceptionFile(severity,tag,context) \
40 (void) CLIThrowException(cli_wand,GetMagickModule(),severity,tag, \
45 #define CLIWandExceptionBreak(severity,tag,option) \
46 { CLIWandException(severity,tag,option); break; }
48 #define CLIWandExceptionReturn(severity,tag,option) \
49 { CLIWandException(severity,tag,option); return; }
51 #define CLIWandExceptArgBreak(severity,tag,option,arg) \
52 { CLIWandExceptionArg(severity,tag,option,arg); break; }
54 #define CLIWandExceptArgReturn(severity,tag,option,arg) \
55 { CLIWandExceptionArg(severity,tag,option,arg); return; }