mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2024-12-11 16:35:35 +01:00
11 lines
209 B
OCaml
11 lines
209 B
OCaml
(** Error handling *)
|
|
|
|
(** Soft error in CPDF. *)
|
|
exception SoftError of string
|
|
|
|
(** Hard error in CPDF *)
|
|
exception HardError of string
|
|
|
|
(** Raise SoftError with the given string. *)
|
|
val error : string -> 'a
|