Skip to content
Snippets Groups Projects
Commit 54d11c27 authored by sof's avatar sof
Browse files

[project @ 1998-03-20 15:15:43 by sof]

Added recSelError
parent d2cf1d40
No related merge requests found
......@@ -20,6 +20,7 @@ module PrelErr
, noMethodBindingError
, nonExhaustiveGuardsError
, patError
, recSelError
, recConError
, recUpdError -- :: String -> a
......@@ -129,6 +130,7 @@ irrefutPatError
--, noExplicitMethodError
, nonExhaustiveGuardsError
, patError
, recSelError
, recConError
, recUpdError :: String -> a
......@@ -138,6 +140,7 @@ noMethodBindingError s = error (untangle s "No instance nor default method f
irrefutPatError s = error (untangle s "Irrefutable pattern failed for pattern")
nonExhaustiveGuardsError s = error (untangle s "Non-exhaustive guards in")
patError s = error (untangle s "Non-exhaustive patterns in")
recSelError s = error (untangle s "Missing field in record selection:")
recConError s = error (untangle s "Missing field in record construction:")
recUpdError s = error (untangle s "Record to doesn't contain field(s) to be updated")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment