0
votes
3answers
11 views
CodeIgniter: set_message for max_length[x]
How do you set an error message for max_length and min_length rules. For instance, if I set a rule max_length[6], I'd like the error message to display
Max characters allowed: 5
0
votes
2answers
24 views
Rails - Getting an error message from the model that is not a Validation error.
So I have a method in a reservation model called add_equip. This method does some checking to make sure the added piece of equipment is valid (not conflicting with another reserva …
0
votes
1answer
23 views
Webpage error details
do you know why do I get this error? on the browser?
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
Timestamp: Sun, 8 Nov 2009 …
0
votes
1answer
21 views
Spring - Best approach to provide specific error messages in a validator from a DAO?
What is the best way to implement a validator in Spring that accesses a DAO object but needs to return different error messages based on the DAO error? Should the DAO method throw …
0
votes
4answers
28 views
Error handling in Dynamic JS loading
I am loading a JS file needed only for one part of my web page, only when the user navigates to that tab on the page.
var scriptFile = document.createElement("script");
scriptFile …
1
vote
1answer
41 views
+100
Best Practices for Error Logging and/or reporting for iPhone
When I do web development, I use a custom made logger that catches fatal errors and appends a trace to a file and displays a message to the user. I can occasionally glance to see …
0
votes
5answers
41 views
Upload Validation for photos
I got a javascript code like this to validate the file extension for my users when they upload pics on my server.It should allow both .jpg and .jpeg photos however only .jpg files …
0
votes
1answer
25 views
Selenium RC: how to capture/handle error?
Hi, My test uses Selenium to loop through a CSV list of URLs via an HTTP proxy (working script below). As I watch the script run I can see about 10% of the calls produce "Proxy err …
0
votes
2answers
43 views
+100
Spring - Ingres RDBMS support in sql-error-codes.xml error code mapping file
I have a Java project connecting to an Ingres database and using the Spring Framework. This issue is related to the error codes list configuration.
According to Spring Framework A …
2
votes
3answers
90 views
How to get the jQuery $.ajax error response text?
Hi all,
I am sending an error response to my jQuery.
However I can not get the response text (in the example below this would be Gone to the beach)
The only thing jQuery says is …
0
votes
2answers
19 views
On error, attempt to include a file and re-execute the failed function
First of all, this question is purely theoretical. Fact is, whether it's possible or not, it would be terribly bad practice. Having said that, here's my question:
PHP offers the p …
1
vote
3answers
82 views
Do I need to release an returned NSError object?
There are many Cocoa methods that require an NSError object as a parameter to a method, but are really a means of returning an error object to the calling method if errors exist. I …
4
votes
5answers
78 views
In classic ASP, is there a way to handle errors at application level?
In classic ASP, is there a way to handle error at application level?
Is there guidelines for handling error / exceptions in classic ASP 3 ? The Server.GetLastError() not a lot to …
1
vote
4answers
104 views
Are PHP exceptions really more useful than errors? (Adv)
I believe that in properly coded systems - errors (as errors or exceptions) should not be possible (with the exception of a DB/memcached server going down causing a query to fail). …
1
vote
2answers
37 views
Java library to map HTTP status code to description?
I'm in the situation where I'm writing custom error pages for a webapp (primarily to reduce information disclosure from the servlet container's default error pages). Since I need …
