//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: gsmpexceptions.h 
//
//Version: $Revision: 1.3 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/06/18 05:21:57 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Harri Sunila
//
//Description:
//      Classes for GSMP specific exceptions for error handling 
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __GSMP_GSMPEXCEPTIONS_H__
#define __GSMP_GSMPEXCEPTIONS_H__

#include "pf/exception.h"

//
// Class: gsmpInvalidLengthException
//
// Description: 
//     This exception should be thrown whenever a wrong length for a message
//     field is encountered.
//

class gsmpInvalidLengthException : public pfException
{
    public:
        gsmpInvalidLengthException(string file_, int line_);
        gsmpInvalidLengthException(const gsmpInvalidLengthException &other_);
        virtual ~gsmpInvalidLengthException(void);

        virtual string getName(void);
}; 

#endif // __GSMP_GSMPEXCEPTIONS_H__
