0
votes
2answers
40 views
uncaught exception: Syntax error, unrecognized expression: #
Hi all, I get this error on a .click() event in jQuery. I see it in Firebug. I use the latest version, 1.3.2 (min)
The click fires an $.ajax() request for a Form in my website. I a …
0
votes
0answers
13 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 …
0
votes
2answers
54 views
Why do many SQL Server severity 10 errors actually seem severe?
BOL states that SQL Server level 10 messages are "Informational messages that return status information or report errors that are not severe."
However these errors seem severe and …
1
vote
1answer
19 views
GetExitCodeProcess process termination status codes?
Hello,
Does anybody know where can I find a list of GetExitCodeProcess' process termination status codes? I've done some search in the internet and haven't been able to find one.
…
2
votes
1answer
29 views
Raise ParseError in Haskell/Parsec
What is the prefered way to raise errors (ParseError) in Parsec? I got some code inside a parser that performs a check and if the check fails a ParseError should be returned (i.e. …
2
votes
5answers
50 views
How do I displaying details of a PHP internal server error?
I have installed a PHP application onto a shared hosting web server. I am getting a 500 Internal Server Error. I don't seem to have access to any log files so I would like the erro …
1
vote
3answers
41 views
Java problem - getting errors related to Mockito
Hi,
I'm using the Mockito library for Java testing and getting errors in Mockito when I run my test. (I'm using the NetBeans IDE, in case that's relevant). For example, I have a …
0
votes
1answer
13 views
JasperReport exception print
I making report engine with JasperReport. Everything works fine so far but I have small miss understanding. In my code I'm trying to compile template file and return JasperReport o …
0
votes
1answer
43 views
Strange mySQL Coldfusion Problem
Hey guys well I'm working on this system and it giving me sooo much trouble. I just want to quit at this point. Long story short I made a few changes to how a mySQL table works, I …
1
vote
2answers
120 views
What is this 1055 Delphi Error and is it Important?
I am using a FindFile routine to search through all files in a directory. The original code was freely available from Latium Software. It runs the FindFile is a separate Thread.
I …
0
votes
11answers
231 views
Initialization of reference member requires a temporary variable C++
struct Div
{
int i;
int j;
};
class A
{
public:
A();
Div& divs;
};
In my constructor definition, I have the following
A::A() : divs(N …
0
votes
1answer
29 views
Python message oriented middleware (i.e. JMS for Python)
What message oriented middle ware with a Python API are out there?
What ones did you use and recommend (or not)?
0
votes
4answers
65 views
Localization of string literals
I need to localize error messages from a compiler. As it stands, all error messages are spread throughout the source code as string literals in English. We want to translate these …
1
vote
2answers
31 views
Error in Oracle TO_CHAR() Function
Why does the following error occur on Line 7 of the query below?
Error: ORA-01861: literal does not match format string
Query:
01: SELECT hour
02: FROM (WITH all_hours AS
03: …
0
votes
2answers
19 views
Generating the standard ASP.NET ‘uncaught exception’ page HTML from the exception itself?
Hi all.
Is it possible to generate the HTML page normally shown for an uncaught exception in ASP.NET, using an Exception object?
I have an app that catches an exception in Global …
