mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-01-07 14:32:18 +01:00
10 lines
253 B
OCaml
10 lines
253 B
OCaml
(** Two exceptions recommended for use with the library, though currently not
|
|
raised by any function in this module. Cpdfcommand uses them extensively. *)
|
|
exception SoftError of string
|
|
|
|
exception HardError of string
|
|
|
|
let error s = raise (SoftError s)
|
|
|
|
|