mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-01-31 02:37:25 +01:00
7 lines
156 B
OCaml
7 lines
156 B
OCaml
(** Two exceptions recommended for use with the library. *)
|
|
exception SoftError of string
|
|
|
|
exception HardError of string
|
|
|
|
let error s = raise (SoftError s)
|