Tagged Questions

1
vote
3answers
50 views

Get exception context in PHP

If you use a custom error handler in PHP, you can see the context of an error (the value of all variables at the place where it occurred). Is there any way to do this for exception …
2
votes
3answers
58 views

When is best to use exceptions in PHP?

I usually indicate an error in a method by returning false, but it doesn't always gel with me semantically (as depending on the method, false may be a valid return). I've looked i …
1
vote
2answers
19 views

Asp.Net: Catch upload of to big files

Asp.Net has an upper limit for file uploads. I try to catch this situation on the server side. According to the documentation I found, it should be possible to override Application …
2
votes
2answers
18 views

Error codes returned by urllib/urllib2 and the actual page

Hi guys, the normal behavior of urllib/urllib2 is if an error code is sent in the header of the response (i.e 404) an Exception is raised. How do you look for specific errors i.e …
0
votes
0answers
26 views

ASP.NET Global.asax Application_Error works but not when using the Error event

Hi, I've got an ASP.NET MVC application that is supposed to catch all unhandled exceptions within the global.asax application error handler. If I define the handler as follows: …
0
votes
2answers
28 views

Get Rid of Error Message - VB.NET

Hey guys, When I do the try/catch method in my vb.net project I will try the code I want and when it can't do it, i make a message box right after the catch method. The thing is t …
0
votes
6answers
32 views

PHP Script stops processing on a warning error?

Hello all, I have a PHP script that stops processing (it seems to be) on a PHP warning. The error is general "PHP Warning: fopen" - "failed to open stream: No such file or direct …
1
vote
5answers
68 views

PHP - recording errors

What is the best way to record errors experienced by the user? My initial thought was to make a function that recorded the error with a unique number and maybe a dump of the varia …
2
votes
3answers
33 views

INSERT data ignoring current transaction

I have a table in my database which essentially serves as a logging destination. I use it with following code pattern in my SQL code: BEGIN TRY ... END TRY BEGIN CATCH INS …
0
votes
3answers
42 views

Long running App, how handle Errors?

Hi, i have to implement a Info Terminal. I choose dot.net and the terminal is only a touchpad. So this System running 7 days 24 hours. So i call a Webservice, display Data, show …
0
votes
1answer
17 views

ErrorMessage is ignored in DataAnnotations DataType Attribute

I have a Model that is using DataAnnotations. Something like public class Appointment { [Required(ErrorMessage="Please enter your name")] public string Name { get; set; } …
0
votes
1answer
12 views

Application_Error ignored?

I've put the following code in global.asax <%@ Application Language="VB" %> <script runat="server"> Sub Application_Start(ByVal sender As Object, ByVal e As Even …
5
votes
3answers
53 views

catching all errors and redirecting to page with php

Is there say way to universally tell php to redirect to a certain page on any fatal errors? Say i have a site with many different files, and i want to hide problems (while still l …
1
vote
2answers
33 views

How do I copy and paste an error message in Pharo?

Squeak was once innovative by giving people more than a dull error message: a debugger and go figure out! However, nowadays there's a google, and now it'd rock to copy paste the …
1
vote
2answers
28 views

how can i retrieve the msg from HttpServletResponse.sendError

i have two tomcat servers that communicate between them. upon an error at one of the servers i would like to send an error response to the other server. i am sending the error usi …

1 2 3 4 5 38 next
15 30 50 per page