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

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


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


VertexNotFoundException::VertexNotFoundException(string message) : GraphException(message)
{
//     string s = this->getName() + " has been thrown\n";
//     cout<<s.c_str();
}


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


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