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

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


GraphException::GraphException(string message)
{
    _description = message;
}


string GraphException::getException()
{
    return "["+getName()+"]\n\t"+_description;
}


void GraphException::printException()
{
    cout<<getException().c_str()<<endl;
}


const string GraphException::getName() const
{
    return "GraphException";
}
//////////////////////////////////////////////////////////////////////////
Соседние файлы в папке lab_1