Скачиваний:
10
Добавлен:
01.05.2014
Размер:
835 б
Скачать
// Copyright (C) 1991 - 1999 Rational Software Corporation
//////////////////////////////////////////////////////////////////////////
#include "StdAfx.h"
#include "RibbleExistsException.h"
//////////////////////////////////////////////////////////////////////////

RibbleExistsException::RibbleExistsException(string message):GraphException(message)
{
}


string RibbleExistsException::getException()
{
    return GraphException::getException();
}


void RibbleExistsException::printException()
{
    GraphException::printException();
}


const string& RibbleExistsException::get__description() const
{
    return _description;
}


const string RibbleExistsException::getName() const
{
    return "RibbleExistsException";
}
//////////////////////////////////////////////////////////////////////////

Соседние файлы в папке exceptions