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

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


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


RibbleNotFoundException::RibbleNotFoundException(string message) : GraphException(message)
{
    //cout<<this->getName().c_str()<<" has been thrown"<<endl;
}


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


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

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