Renamed Command_precondition_exception class to CommandPreconditionException.

This commit is contained in:
David Capello 2010-03-07 16:21:09 -02:00
parent 5d55358ffb
commit ca2e3f7bed

View File

@ -29,10 +29,10 @@ class Params;
typedef std::list<Sprite*> 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.") { }
};