//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / MIB
//
//File: mibexception.h
//
//Version: $Revision: 1.5 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/05/26 09:22:18 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Pärnänen
//
//Description:
//      Defines an exception that is used when error occured
//      in a MIB tree.
//
//Copyright:
//
//
//Licence:
//
//
//History: 

#ifndef __MIB_EXCEPTION_H__
#define __MIB_EXCEPTION_H__

#include <typeinfo>
#include <asn-incl.h>

//
//Class: mibException
//
//Description:
//    See file description
//

class mibException
{
    public:
        mibException(int errorStatus_);
        virtual ~mibException(void);

        int getErrorStatus(void) const;
        
    protected:
        int _errorStatus;
};

#endif // __MIB_EXCEPTION_H__
