From ca2e3f7bed057364ea8eb4e684ac6c34b0ab1c12 Mon Sep 17 00:00:00 2001 From: David Capello Date: Sun, 7 Mar 2010 16:21:09 -0200 Subject: [PATCH] Renamed Command_precondition_exception class to CommandPreconditionException. --- src/context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/context.h b/src/context.h index 7c10aff3d..2f6b91113 100644 --- a/src/context.h +++ b/src/context.h @@ -29,10 +29,10 @@ class Params; typedef std::list SpriteList; -class Command_precondition_exception : public ase_exception +class CommandPreconditionException : public ase_exception { public: - Command_precondition_exception() throw() + CommandPreconditionException() throw() : ase_exception("Cannot execute the command because its pre-conditions are false.") { } };