Questions tagged [exception]

Denotes questions related to exceptions (An unusual condition during computation)

An exception is an unusual condition that requires deviation from the program's normal flow. Normally, an exception should not result in total failure, but instead be attended by an exception handler. Exception handling is a built-in construct in many programming languages. Usually, exceptions are handled by unwinding the stack, thus rolling back to a defined state outside the exception's scope, and then invoking a handler block or routine.

293 questions
1
vote
1 answer

Facing exception error while loading magento

I am facing this error. Kindly give me a solution to resolve this. Exception printing is disabled by default for security reasons. Error log record number: 1845623148
0
votes
1 answer

Why are custom error messages not used for Mage_Core_Exception

Referring to the example code below, in the case of Mage_Core_Exception why is the error message from the exception being used directly $e->getMessage() rather than a custom message like $result['error_msg'] = $this->__('There was an error…
Srikanth AD
  • 291
  • 5
  • 13
0
votes
1 answer

I have two problems with magento

I have two problem with Magento. I can't upload image in to magento. The image upload button does not work. And I also have problem with the exception buttons in system/configuration/design/themes. I try to put the mobile theme codes in exception.…
mark
  • 11
0
votes
1 answer

Spreadsheet layout validation

I created a feature to check if a spreadsheet has the correct layout, before uploading it to the database, it works perfectly for spreadsheets that are outside the requested standard. The problem is, when I upload it to check one that has the…