/*********************************************************************
 * This file is part of the PRAPI library.
 *
 * Copyright (C) 2001 Topi Mäenpää and Jaakko Viertola
 * All rights reserved.
 *
 * This program is free software. You can redistribute and/or modify
 * it under the terms of the free software licence found in the
 * accompanying file "COPYING". The licence terms must always be
 * redistributed with this source file. The above copyright notice
 * must be reproduced in all modified and unmodified copies of this
 * source file.
 *
 * $Revision: 1.4 $
 *********************************************************************/

#ifndef _CLASSIFICATIONEXCEPTION_H
#define _CLASSIFICATIONEXCEPTION_H

#include <Exception.h>

namespace prapi
{
	/**
	 * ClassificationException is thrown when an error occurs during a
	 * classification process.
	 **/
	class ClassificationException : public util::Exception
	{
	public:
		ClassificationException(std::string message) : Exception(message) {}
	};
}

#endif
