Скачиваний:
11
Добавлен:
01.05.2014
Размер:
851 б
Скачать
// 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)
{
}


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


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