mud++0.26/etc/
mud++0.26/etc/guilds/
mud++0.26/log/
mud++0.26/mudC/
mud++0.26/player/
mud++0.26/src/unix/
/*
....[@@@..[@@@..............[@.................. MUD++ is a written from
....[@..[@..[@..[@..[@..[@@@@@....[@......[@.... scratch multi-user swords and
....[@..[@..[@..[@..[@..[@..[@..[@@@@@..[@@@@@.. sorcery game written in C++.
....[@......[@..[@..[@..[@..[@....[@......[@.... This server is an ongoing
....[@......[@..[@@@@@..[@@@@@.................. development project.  All 
................................................ contributions are welcome. 
....Copyright(C).1995.Melvin.Smith.............. Enjoy. 
------------------------------------------------------------------------------
Melvin Smith (aka Fusion)         msmith@hom.net
MUD++ development mailing list    mudpp-list@mailhost.net
------------------------------------------------------------------------------
erratum.cc
*/

#include <signal.h>
#include "io.h"
#include "erratum.h"

void Error::outOfBounds()
{
	Cout << "ERROR: Out of Bounds. Core dumped.\n\r";
	coreDump();
}

void Error::unsupportedFunction()
{
	Cout << "ERROR: Unsupported Function. Core dumped.\n\r";
	coreDump();
}

void Error::coreDump()
{
	raise( SIGSEGV );
}