//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / MIB
//
//File: mibexception.cpp
//
//Version: $Revision: 1.4 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/05/18 10:12:38 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      See corresponding header file.
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#include "mibexception.h"

mibException :: mibException(int errorStatus_)
    : _errorStatus(errorStatus_)
{
    return;
}

mibException :: ~mibException(void)
{
    return;
}

//
//Functions: getErrorStatus
//
//Description:
//    Method to get error status value.
//

int mibException :: getErrorStatus(void) const
{
    return _errorStatus;
}
