eb2c177bb3ae4fafb6f381b48bcd8ca21b4a18b4
[tiger.ml.git] / compiler / src / lib / tiger / tiger_error.ml
1 module Pos = Tiger_position
2
3 exception T of string
4
5 let exn ~pos ~msg =
6 let msg = Printf.sprintf "Error: %s. In %s." msg (Pos.to_string pos) in
7 raise (T msg)
This page took 0.047534 seconds and 3 git commands to generate.