#include "IbcAppError.h"

IbcAppError::IbcAppError(Error err, const char *objectName, 
			 const char *descrip)
{
  char buf[512];
  error = err;

  sprintf(buf, "object %s: %s", objectName, descrip);
  msg = strdup(buf);
}


IbcAppError::~IbcAppError()
{
  free((void *)msg);
}

