# STATUS: Finished

ErrorUtils = module.exports =

	fatal: (message) ->
		throw Error message ? "fatal error"

	assert: (truthy, message) ->
		throw Error message ? "truthy assertion failed" if not truthy

	assertFalse: (falsy, message) ->
		throw Error message ? "falsy assertion failed" if falsy
