//Editor-Info: -*- C++ -*-
//
//Subject: Scheduler Framework
//
//File: exception.cpp
//
//State: $State: Exp $
//
//Version: $Revision: 1.4 $
//
//Date: $Date: 1998/07/15 11:28:17 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
// 
//Authors:
//	Vesa-Matti Puro
//      Juhana Räsänen
//
//Description:
//      See file header (exception.h) description.
//
//Copyright:    
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//     
//
//History:
//
//

#include "exception.h"

sfException :: sfException(const sfException &other_)
{
    return;
}

sfException :: sfException(void)
{
    return;
}

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

//
// Method: printInfo
//
// Description:
//      Prints some information concerning the occurence of
//      exception.
// 

void sfException :: throwSchedulerEmptyException(void)
{
    throw sfException();
    return;
}

void sfException :: throwInvalidHandleException(void)
{
    throw sfException();
    return;
}

void sfException :: throwInvalidRequestException(void)
{
    throw sfException();
    return;
}

void sfException :: throwInvalidCallbackException(void)
{
    throw sfException();
    return;
}

void sfException :: printInfo(void) const
{
    return;
}

