Tagged Questions
The error-code tag has no wiki summary.
54
votes
3answers
15k views
How to redirect to a 404 in Rails?
I'd like to 'fake' a 404 page in rails.
In PHP, I would just send a header with the error code as such:
header("HTTP/1.0 404 Not Found");
How is that done with rails?
Thank you.
15
votes
10answers
548 views
When is it appropriate to use error codes?
In languages that support exception objects (Java, C#), when is it appropriate to use error codes? Is the use of error codes ever appropriate in typical enterprise applications?
Many well-known ...
6
votes
2answers
179 views
Designing error codes
I'm designing an application which returns JSON string to clients in response, and an error code in case some exception occurs. I'm planning to design a set of error codes which can help me determine ...
5
votes
14answers
2k views
Java: Is it ok to set Integer = null?
I have a function that returns an id number if the argument exists in the database. If not, it returns null. Is this begging for a null pointer exception? Negative id numbers are not permitted, but I ...
5
votes
3answers
3k views
Where are the Spring MVC validation error codes resolved?
I am attempting to write validators under the Spring MVC framework, but there is a glaring omission in the documentation. When calling passing an error to the Errors object most of the methods expect ...
4
votes
2answers
73 views
Which errors should I handle? Which ones are “fatal”?
Some Windows functions such as CreateFile could return a huge variety of error codes when GetLastError is called, and it's impractical to check for every possible error code -- there is often not ...
4
votes
4answers
174 views
What should I return for errors in my functions in C?
Currently I'm returning -1 in my custom functions in C if something wrong happens and 0 for success. For instance, working with a linked list and some function needs a non-empty list to work properly. ...
4
votes
3answers
355 views
What's a good way to manage error and success messages and codes?
Currently I don't have a very good system for managing error or success messages, they are pretty much written inline with the code. Can someone suggest a best practice or something you are doing to ...
4
votes
2answers
318 views
Error codes and messages best practice
I am planning out an EDI system that sends, amongst other things, an XML acknowledgement message containing several elements, but specifically these three; ErrorCode, ErrorSeverity and ...
4
votes
5answers
5k views
How can I trace IIS 500 errors thrown by my webservice
I have deployed a new version of an ASP.NET webservice. The IIS logfile reports an errorcode 500 when this service is being called by a client. My own (test) can use the service without any error. I ...
4
votes
5answers
3k views
How do you make sense of the error: cannot convert from 'int []' to 'int []'
When compiling the following code:
void DoSomething(int Numbers[])
{
int SomeArray[] = Numbers;
}
the VS2005 compiler complains with the error C2440: 'initializing' : cannot convert from 'int ...
3
votes
1answer
72 views
fbgraph error code
Does anyone know where can I find all the error code and error type for FBGraph? While handling error, I want to check what error FBGraph throws (like: duplicate post error, access token expire error) ...
3
votes
2answers
90 views
How do I create custom error domains for iOS applications?
I am a newbie to programming in objective-C for iOS applications. How do I create my own error domains and error codes for use in my own application?
2
votes
1answer
186 views
glReadPixel returns zeros and error 1282 (Android)
Here is my picking code
public static void pick(GL11 gl){
int[] viewport = new int[4];
ByteBuffer pixel = ByteBuffer.allocateDirect(3).order(ByteOrder.nativeOrder());
...
2
votes
1answer
59 views
Are there any coding standards for VBA within Excel?
Especially, I'd like to know when it is appropriate to output one or other of the standard error codes (viz#N/A, #REF!, #NAME?, #DIV/0!, #NULL!, #VALUE! and #NUM!) in response to bad inputs.
For ...
2
votes
0answers
49 views
Reproduce ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 error code from ReplaceFile
I am using the ReplaceFile Win32 function as part of an operation to get atomic behaviour.
Of the three special error codes for that function, I've been able to reproduce and recover (rollback) from ...
2
votes
2answers
75 views
Are there a set of “universal” error/exception codes?
I'm a bit of a polyglot when it comes to programming languages, and most of the languages I use have Error/Exception handling of some sort.
In most languages there's a default implementation of error ...
2
votes
5answers
86 views
What should be the reponse code when validation errors happen?
I'm implementing an API. The API accepts/returns JSON content type.
Now, suppose that the data submitted by some POST request is not valid, like a missing attribute, or a duplication exists for the ...
2
votes
1answer
327 views
2
votes
1answer
99 views
OCUnit Error Codes
Does anyone know how to find a list of all the possible error codes thrown by the ostest utility, and their meanings? I noticed this to be a common problem for people, where they ask about an OCUnit ...
2
votes
6answers
4k views
How can I get php to return 500 upon encountering a fatal exception?
PHP fatal errors come back as status code 200 to the HTTP client. How can I make it return a status code 500 (Internal server error)?
2
votes
2answers
948 views
Error code 141 with tar
tar -xvzf $filename.tar.gz || { exit $?; }
Here my scripts would exit with errorCode 141. I am using Fedora Core 6 with tar version 1.15
it wont happen all the time, but more than 70 percent of the ...
1
vote
1answer
56 views
Is it possible to retrieve SQL error codes from unsuccessful entity framework data operations?
SQL returns codes that are preceded by a minus sign (-) indicate that the SQL statement execution was unsuccessful. (All SQL defined error codes are negative integers).
In previous applications, I ...
1
vote
2answers
87 views
Android : 400 Error code when accessing a RESTful webservice
I want to access a Restful web service. I want the request should be in the following format.
GET /API/Contacts/username HTTP/1.1
HOST: $baseuri:port
Accept: text/xml
Authorization: Basic ...
1
vote
2answers
399 views
What is the meaning of 6E 00 when I send a command to a SmartCard
I try to access a SmartCard via C++.
I got already the Connection and the CardHandle.
But when I send an APDU Command via SCardTransmit, i'll get 6E 00 as the answer from the card.
No matter which ...
1
vote
1answer
346 views
SendGrid API error codes and messages?
I have looked all over in their site and forums and wiki, but so far I have not been able to find an answer to this question.
Where can I find a list of SendGrid API error codes and messages?
Thanks
...
1
vote
2answers
246 views
What is the meaning of error code 24 on Linux?
I'm running a Java program through a Python script on Linux, but the program crashes without outputting any error messages. The os.system command that executes the Java program outputs an error code ...
1
vote
5answers
792 views
errorCode for The process cannot access the file 'XYZ' because it is being used by another process
I using C# .NET , vs 2008 , .net 3.5
For me, is difficult, but I need sample code in C# for this:
How get the error code of IOException "The process cannot access the file 'XYZ' because it is being ...
1
vote
2answers
238 views
Getting the linux error code from make in Vim
I'm trying to get the "0 of success, nonzero if error" return code from make in Vim. Specifically, I am on Ubuntu and using v:shell_error does not work.
After digging around and looking at this ...
1
vote
1answer
62 views
MIME/IMF error codes?
I need to write php code to identify common e-mail errors, like "inbox full" or specially "invalid email name" from email messages, because we need to clear our databases from nonexistent emails.
I'm ...
1
vote
2answers
38 views
Use of Exceptions or Strings containing error codes in Software Services
We are creating an application for a client's website. The website will make a function call to our application to generate XML data, which we will return as a String. If something goes wrong during ...
1
vote
2answers
1k views
Where to find the list of error code and its messages for C#, Sql server?
How can I find a list of error codes for sql server, socket exceptions, web exceptions or any exception.
For sql server I am not able to find all the error codes in sysmessages like for instance ...
1
vote
4answers
194 views
How to set the ErrorCode of a ManagementException?
I want to handle a ManagementException exception for a specific ErrorCode only and am having trouble writing the unit test for it. Ordinarily, I would write the test so that it is something like the ...
1
vote
2answers
438 views
What is the list of JConnect error-codes?
I have recently changed an application from storing the database username and password in a configuration file (gasp password stored in plain text in a config file, I know, I know).
The application ...
0
votes
2answers
43 views
COMException occurred: ErrorCode = -2146824070
I am using the Interop library for Word, and I am getting a COM Exception:
Message: "Type Mismatch"
ErrorCode: -2146824070
Source: "Microsoft Word"
The method throwing the error is:
object docStart ...
0
votes
0answers
22 views
Facebook response is error_code=1 Error 1349040 Invalid Application ID: The specified application ID is invalid
I'm new to programming facebook applications. I'm trying to do a simple thing such as login to my page through facebook. And I'd done most of code work and achieved to connect to facebook, but then ...
0
votes
3answers
39 views
Exceptions - Differentiating Exceptions when method raises more than one
I got this class which raises same type of exception, how do i capture this exception and display appropriate error message. Here is what i do now.
public bool ChangePassword(oldPassword,newPassword)
...
0
votes
0answers
71 views
Get EXIF data from Image with ImageIO
in my app i want to read image metadata, from the ImagePickerController.
I tried this like this:
NSURL* imgURL = (NSURL *)[info valueForKey:UIImagePickerControllerReferenceURL];
NSLog(@"%@", imgURL);
...
0
votes
0answers
74 views
Getting API Error Code: 191 on sub pages
I'm trying to authorize a user using the javascript SDK.
Works fine if im on the root url: www.mysite.com
However, if i try to authorize on a subpage, for example: www.mysite.com/subpage i will get ...
0
votes
1answer
383 views
Error code -1011 when I use AFNetWorking
I am doing a service in our customer company. And I try to get some information from their server by AFNetWorking (Our customer encourage to use AFNetWorking)
I did some sample using AFNetWorking, and ...
0
votes
1answer
54 views
What is SVN error code 200015?
During an export operation using PySVN, I got an exception:
ClientError: ('', [('', 200015)])
Presumably this error code is one of those defined in svn_error_codes.h. But... which one? And how do I ...
0
votes
1answer
237 views
C# TCP Socket error - 10060
I have a windows service act as a server. And I run one windows form application form localhost as a client. Both the programs use TCP socket connection to send/recieve data.
Server listens on port ...
0
votes
3answers
44 views
Using error codes instead of explicit checks in SQL?
I have a query which attempts to insert a row into a table. It is possible that the query will fail due to a primary key contraint failing because there is already a row with that ID.
I could check ...
0
votes
3answers
47 views
Returning values vs returning error codes?
This is a general programming question, not pertaining to any specific language.
A new programmer typically will write a method that calculates some value, then returns the value:
public Integer ...
0
votes
2answers
38 views
php url error code
I define encoding in php file:
header("Content-Type:text/html;charset=utf-8");
Now I write a link in my template file ( smarty )
<a ...
0
votes
0answers
121 views
Configuring default 404 page for Glassfish v3
I am trying to configure error page on Glassfish server. I added this to web.xml:
<error-page>
<error-code>404</error-code>
...
0
votes
1answer
81 views
rules to define an error code?
I'm working on a project in which I need to return error codes in case work failed.
But which is the 'rule' for doing this?
For example:
if(tryDoUpload() == false) {
//upload failed
int ...
0
votes
2answers
148 views
Try/Catch VS return error code in C++ [closed]
Possible Duplicate:
In C++ what are the benefits of using exceptions and try / catch instead of just returning an error code?
I am wondering what's the pros & cons of using Try/Catch VS ...
0
votes
0answers
17 views
DocCreator 4 “Create” returns error code 32
I'm trying to print a document using "DocCreator 4" API but I getting error code 32 on call to "Create".
I couldn't find any documentation of the error codes.
Does anybody know what this error code ...
0
votes
1answer
35 views
Defining error codes
Is there a "right way" to define error codes? I mean, I've built a library a while ago that throws custom exceptions, but I targeted the custom error messages to a developer's standpoint. Now I'm ...