//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / TRS
//
//File: cause.idl
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/06 14:45:14 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author: Harri Sunila
//
//Description:
//      Define known causes of exceptions
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History:

#ifndef __TRS_CAUSE_IDL__
#define __TRS_CAUSE_IDL__

module trs
{
    typedef unsigned long Cause;
    
    const Cause NoException = 0;
    const Cause NoLinkToDestination = 1;
    const Cause UnknownPrefix = 2;
    const Cause QosNotAvailable = 3;
};

#endif // __TRS_CAUSE_IDL__
