Questions tagged [error-code]

An error code is a value returned to provide context on why an error occurred. Error codes are often provided in lieu of an error message for the sake of brevity or consistency.

Error codes are often provided in contexts where providing specific error messages would be costly, too varied, or redundant. Tables of error codes are often provided with the full text of the error messages so that users can find a full explanation of the cause of the error.

Error code can be easily programmatically handled, unlike error messages, which can be unpredictable or sometime impossible to rely on (for example, when they are translated, and thus different for each language).

483 questions
0
votes
3 answers

what is meaning of error(1,-17)?

Possible Duplicate: android:mediaplayer error(1, -17) error(1,-17) I am using mediaplayer in my app and sometimes I got error(1,-17) in my logcat anyone has any idea what it means ? thanks
Ketan Ahir
  • 6,458
  • 1
  • 20
  • 43
0
votes
2 answers

Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/a8107556/public_html/index.php on line 5

I am having a problem with a page that i've been working on and i get that error. Can someone please help? Thanks
0
votes
1 answer

When a socket error occur, how to get its errorcode from the exception?

Codes like this: import socket, sys try: address = ('127.0.0.1', 31500) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(address) except Exception: errType, errValue, errTraceback = sys.exc_info() # or #…
Coaku
  • 887
  • 1
  • 8
  • 21
0
votes
1 answer

RedDot LiveServer dynament error

How do I go about debugging what a return code of -26504 means? It's the result of a 'content' dynament of type 'import'.
Bobby Jack
  • 14,812
  • 10
  • 59
  • 94
0
votes
1 answer

Error codes and message handling in a plugin system

I am brooding over the best design of error codes and the corresponding error messages in a C project. This project consists of a small kernel providing the core functionality, which can be extended by various plugins. The kernel already defines the…
Jonas
  • 2,364
  • 4
  • 21
  • 22
0
votes
2 answers

WinAPI CreateFileA error code 0xdf

I have a mapped Webdav Drive and i can't open file for reading using CreateFileA(file_path, FILE_READ_DATA, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); i am still getting error code 0xdf ERROR_FILE_TOO_LARGE 223 (0xDF)…
FrUh
  • 445
  • 1
  • 3
  • 7
0
votes
1 answer

Error Codes Media Player syntax and definition

I cannot find any documentation on error codes with regard to Android. I am putting together an app that seemed to be working on a lower level API setup but not on a higher one. The error occurs when trying to play an audio file and like I said it…
0
votes
1 answer

SQLite >1 Column Table errorcode = 1

I have a problem creating a database with 2 columns. In the first one there should be a name and in the second one a number. Creating the name database is no problem, but when I try to add the second column I get the error message…
0
votes
1 answer

cron and wget: how to prevent cron from cluttering syslog with "grandchild failed" messages?

This is a huge annoyance. Whilst in older wget versions (even stated so in the man page) the whole error code functionality had never worked reliably, current wget versions appear to have it working TOO reliably. I have a cron job that might be…
syntaxerror
  • 551
  • 2
  • 4
  • 24
-1
votes
1 answer

Why does my urllib.request return a http error 403?

i am attempting to make a program that downloads a series of product pictures from a site using python. The site stores its images under a certain url format https://www.sitename.com/XYZabcde where XYZ are three letters that represent the brand of…
euan
  • 11
  • 3
-1
votes
1 answer

Question about error while hooking APK using Cydia Substrate JAVA API

enter image description here Hooking with the above code was successful. Hooking failed because the argument value of a was not entered. I wonder why it failed
bigtunaa
  • 21
  • 3
-1
votes
2 answers

Error Code: 1148 The used command is not allowed with this version of MySQL

Hi I am new to the world of mysql and sql in general. I am trying to create a table in mysql so I can use it analyse the data in jupyter later on. The problem is the data is too large so just importing it is taking too long. I read that you can use…
-1
votes
1 answer

Actionscript code errors

I am currently working on a personal project on a money counter and am really stuck with my code. If somebody can assist me, the final textbox with the answers is not showing up in my project. The project is a money calculator that includes 1¢, 5¢,…
-1
votes
1 answer

Dealing with msi installation result

I have faced a problem with analyzing installation result of a single msi file. If a newer version of some program exits it returns code 1603 (installation failure), which is not actually an error. How to deal with it?
user6416335
-1
votes
1 answer

Flash error 1089

I have experienced error 1089, I am not sure how to fix it. Here is all my code: I have never before seen this error and need to get it fixed, fast. So my game can be out in time. import flash.sensors.Accelerometer; import…