Exceptions¶
Common exceptions¶
-
exception
djvu.decode.
NotAvailable
¶ A resource not (yet) available.
-
exception
djvu.sexpr.
ExpressionSyntaxError
¶ Syntax error while parsing an S-expression.
-
exception
djvu.sexpr.
InvalidExpression
¶ Invalid S-expression.
Job status¶
-
exception
djvu.decode.
JobException
¶ Status of a job. Possibly, but not necessarily, exceptional.
Inheritance diagram:
digraph inheritancec4f1070021 { rankdir=LR; size="8.0, 12.0"; "JobDone" [URL="#djvu.decode.JobDone",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobException" -> "JobDone" [arrowsize=0.5,style="setlinewidth(0.5)"]; "JobException" [URL="#djvu.decode.JobException",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobFailed" [URL="#djvu.decode.JobFailed",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobDone" -> "JobFailed" [arrowsize=0.5,style="setlinewidth(0.5)"]; "JobNotDone" [URL="#djvu.decode.JobNotDone",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobException" -> "JobNotDone" [arrowsize=0.5,style="setlinewidth(0.5)"]; "JobNotStarted" [URL="#djvu.decode.JobNotStarted",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobNotDone" -> "JobNotStarted" [arrowsize=0.5,style="setlinewidth(0.5)"]; "JobOK" [URL="#djvu.decode.JobOK",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobDone" -> "JobOK" [arrowsize=0.5,style="setlinewidth(0.5)"]; "JobStarted" [URL="#djvu.decode.JobStarted",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobNotDone" -> "JobStarted" [arrowsize=0.5,style="setlinewidth(0.5)"]; "JobStopped" [URL="#djvu.decode.JobStopped",fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5)",target="_top"]; "JobFailed" -> "JobStopped" [arrowsize=0.5,style="setlinewidth(0.5)"]; }
-
exception
djvu.decode.
JobNotDone
¶ Operation is not yet done.
-
exception
djvu.decode.
JobNotStarted
¶ Operation was not even started.
-
exception
djvu.decode.
JobStarted
¶ Operation is in progress.
-
exception
djvu.decode.
JobDone
¶ Operation finished.
-
exception
djvu.decode.
JobOK
¶ Operation finished successfully.
-
exception
djvu.decode.
JobFailed
¶ Operation failed because of an error.
-
exception
djvu.decode.
JobStopped
¶ Operation was interrupted by user.