silenced warning about toString not having switch case for ArgumentError

This commit is contained in:
Quinn Dougherty 2022-04-13 10:26:10 -04:00
parent b6e423a6e3
commit e9e6cab099

View File

@ -14,6 +14,7 @@ module Error = {
| NotYetImplemented => "Not Yet Implemented"
| Unreachable => "Unreachable"
| DistributionVerticalShiftIsInvalid => "Distribution Vertical Shift Is Invalid"
| ArgumentError(x) => `Argument Error: ${x}`
| Other(s) => s
}
}