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