0
votes
2answers
16 views
begin try catch on sql server 2005, how to send the ERROR_stuff to the calling parent?
you have this procedure
CREATE PROCEDURE dbo.test1
AS
BEGIN
begin transaction
begin try
exec dbo.test2
commit transaction
end try
begin catch
SELECT
ERRO …
0
votes
1answer
10 views
How do I use RpcRaiseException() for good error handling?
There's RpcRaiseException() dunction in MS RPC runtime to indicate errors that occur during an RPC call either on the server side or in a pipe callback on the client side. The RPC_ …
1
vote
3answers
51 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 …
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
3answers
59 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 …
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
27 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
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 …
4
votes
3answers
846 views
How should I use FormatMessage() properly in C++?
Without:
MFC
ATL
How can I use FormatMessage() to get the error text for a HRESULT?
HRESULT hresult = application.CreateInstance("Excel.Application");
if (FAILED(hresult))
…
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 …
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 …
1
vote
5answers
69 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 …
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 …
1
vote
2answers
45 views
What do programs see when ZFS can’t deliver uncorrupted data?
Say my program attempts a read of a byte in a file on a ZFS filesystem. ZFS can locate a copy of the necessary block, but cannot locate any copy with a valid checksum (they're all …
0
votes
1answer
18 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; }
…
