Modified "error" by "problem" in exceptions.

This commit is contained in:
David Capello 2010-07-31 12:15:02 -03:00
parent 0fdd544524
commit 3c49d0a1ad
2 changed files with 2 additions and 2 deletions

View File

@ -49,5 +49,5 @@ ase_exception::ase_exception(const char* msg, ...) throw()
void ase_exception::show()
{
Console console;
console.printf("An error occurred.\n\nDetails:\n%s", what());
console.printf("A problem has occurred.\n\nDetails:\n%s", what());
}

View File

@ -90,7 +90,7 @@ jexception::~jexception() throw()
void jexception::show()
{
allegro_message("An error occurred.\n\nDetails:\n%s", what());
allegro_message("A problem has occurred.\n\nDetails:\n%s", what());
}
const char* jexception::what() const throw()