mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-30 23:12:36 +00:00
28 lines
786 B
C++
28 lines
786 B
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2003 - 2013 by David White <dave@whitevine.net>
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
/** @file */
|
|
|
|
#ifndef MAP_EXCEPTION_H_INCLUDED
|
|
#define MAP_EXCEPTION_H_INCLUDED
|
|
|
|
#include "exceptions.hpp"
|
|
|
|
struct incorrect_map_format_error : game::error {
|
|
incorrect_map_format_error(const std::string& message) : error(message) {}
|
|
};
|
|
|
|
#endif
|