//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: gsmpexceptions.cpp
//
//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:
//      See corresponding header file.
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#include "gsmpexceptions.h"

//
// Function: gsmpInvalidLengthException
//
// Description:  
//

gsmpInvalidLengthException :: gsmpInvalidLengthException(string file_,
							 int line_)
    : pfException(file_, line_)
{
    return;
}

//
// Function: gsmpInvalidLengthException
//
// Description:  
//

gsmpInvalidLengthException :: gsmpInvalidLengthException(
			      const gsmpInvalidLengthException &other_)
    : pfException(other_)
{
    return;
}

//
// Function: ~gsmpInvalidLengthException
//
// Description:  
//

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

//
// Function: getName
//
// Description:  
//

string gsmpInvalidLengthException :: getName(void)
{
    return "gsmpInvalidLengthException";
}
